Skip to content

Commit 70464ce

Browse files
authored
Update README.md
1 parent 881d61a commit 70464ce

File tree

1 file changed

+94
-0
lines changed

1 file changed

+94
-0
lines changed

README.md

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,100 @@
11
# SpringBoot_SpringCloud_Repo
22

33

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+
498
# Case 1: Implementing Eureka Server
599
Eureka Server is service discovery for your microservices,
6100
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

Comments
 (0)