Skip to content

Commit e1cb82b

Browse files
authored
Create readme.md
1 parent f4113a3 commit e1cb82b

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Spring Cloud Config server
2+
3+
HTTP GET: `http://localhost:8082/api/address/test`
4+
5+
Response:
6+
7+
```
8+
My Address is High Street Park!
9+
```
10+
11+
----
12+
13+
HTTP POST:
14+
15+
```
16+
curl --location --request POST 'http://localhost:8082/actuator/refresh'
17+
```
18+
19+
Response:
20+
21+
```
22+
[
23+
"config.client.version",
24+
"address.test"
25+
]
26+
```
27+
28+
----
29+
30+
31+
HTTP GET: `http://localhost:8082/api/address/test`
32+
33+
Response:
34+
35+
```
36+
My Address is High Street Park! - Something has changed! ===>
37+
```

0 commit comments

Comments
 (0)