|
1 | 1 | # SpringBoot_SpringCloud_Repo |
2 | 2 |
|
3 | 3 |
|
| 4 | + <dependency> |
| 5 | + <groupId>org.springframework.boot</groupId> |
| 6 | + <artifactId>spring-boot-devtools</artifactId> |
| 7 | + <scope>runtime</scope> |
| 8 | + </dependency> |
| 9 | + |
| 10 | + |
| 11 | + |
| 12 | +{ |
| 13 | + "_links": { |
| 14 | + "self": { |
| 15 | + "href": "http://localhost:8888/actuator", |
| 16 | + "templated": false |
| 17 | + }, |
| 18 | + "auditevents": { |
| 19 | + "href": "http://localhost:8888/actuator/auditevents", |
| 20 | + "templated": false |
| 21 | + }, |
| 22 | + "beans": { |
| 23 | + "href": "http://localhost:8888/actuator/beans", |
| 24 | + "templated": false |
| 25 | + }, |
| 26 | + "health": { |
| 27 | + "href": "http://localhost:8888/actuator/health", |
| 28 | + "templated": false |
| 29 | + }, |
| 30 | + "conditions": { |
| 31 | + "href": "http://localhost:8888/actuator/conditions", |
| 32 | + "templated": false |
| 33 | + }, |
| 34 | + "configprops": { |
| 35 | + "href": "http://localhost:8888/actuator/configprops", |
| 36 | + "templated": false |
| 37 | + }, |
| 38 | + "env": { |
| 39 | + "href": "http://localhost:8888/actuator/env", |
| 40 | + "templated": false |
| 41 | + }, |
| 42 | + "env-toMatch": { |
| 43 | + "href": "http://localhost:8888/actuator/env/{toMatch}", |
| 44 | + "templated": true |
| 45 | + }, |
| 46 | + "info": { |
| 47 | + "href": "http://localhost:8888/actuator/info", |
| 48 | + "templated": false |
| 49 | + }, |
| 50 | + "loggers": { |
| 51 | + "href": "http://localhost:8888/actuator/loggers", |
| 52 | + "templated": false |
| 53 | + }, |
| 54 | + "loggers-name": { |
| 55 | + "href": "http://localhost:8888/actuator/loggers/{name}", |
| 56 | + "templated": true |
| 57 | + }, |
| 58 | + "heapdump": { |
| 59 | + "href": "http://localhost:8888/actuator/heapdump", |
| 60 | + "templated": false |
| 61 | + }, |
| 62 | + "threaddump": { |
| 63 | + "href": "http://localhost:8888/actuator/threaddump", |
| 64 | + "templated": false |
| 65 | + }, |
| 66 | + "metrics-requiredMetricName": { |
| 67 | + "href": "http://localhost:8888/actuator/metrics/{requiredMetricName}", |
| 68 | + "templated": true |
| 69 | + }, |
| 70 | + "metrics": { |
| 71 | + "href": "http://localhost:8888/actuator/metrics", |
| 72 | + "templated": false |
| 73 | + }, |
| 74 | + "scheduledtasks": { |
| 75 | + "href": "http://localhost:8888/actuator/scheduledtasks", |
| 76 | + "templated": false |
| 77 | + }, |
| 78 | + "httptrace": { |
| 79 | + "href": "http://localhost:8888/actuator/httptrace", |
| 80 | + "templated": false |
| 81 | + }, |
| 82 | + "mappings": { |
| 83 | + "href": "http://localhost:8888/actuator/mappings", |
| 84 | + "templated": false |
| 85 | + }, |
| 86 | + "refresh": { |
| 87 | + "href": "http://localhost:8888/actuator/refresh", |
| 88 | + "templated": false |
| 89 | + }, |
| 90 | + "features": { |
| 91 | + "href": "http://localhost:8888/actuator/features", |
| 92 | + "templated": false |
| 93 | + } |
| 94 | + } |
| 95 | +} |
| 96 | + |
| 97 | + |
4 | 98 | # Case 1: Implementing Eureka Server |
5 | 99 | Eureka Server is service discovery for your microservices, |
6 | 100 | where all client applications can register by themselves and other microservices look up the Eureka Server to get independent microservices to get the job complete. |
|
0 commit comments