We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90bec4e commit 431638dCopy full SHA for 431638d
01.basic-microservices-with-webclient/readme.md
@@ -0,0 +1,39 @@
1
+# Basic microservices With Web Client
2
+
3
+1) Http GET
4
5
+```
6
+http://localhost:8082/api/address/getById/3
7
8
9
+Response:
10
11
+```json
12
+{
13
+ "addressId": 3,
14
+ "street": "Any street",
15
+ "city": "Nagpur"
16
+}
17
18
+----
19
20
+2) Http Post - create address
21
22
23
+curl --location --request POST 'http://localhost:8082/api/address/create' \
24
+--header 'Content-Type: application/json' \
25
+--data-raw '{
26
27
28
+}'
29
30
31
+Sample Response:
32
33
34
35
36
37
38
39
0 commit comments