-
Notifications
You must be signed in to change notification settings - Fork 2
/
example.http
76 lines (52 loc) · 1.5 KB
/
example.http
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
### get user info
GET http://localhost:8181/user/2
### get user info
GET http://localhost:8181/user2/2
### get user info from Spring RSocketRequester
GET http://localhost:8181/user/requester/2
### get user info from default method
GET http://localhost:8181/user/default/2
### get user info from extra
GET http://localhost:8181/user/extra/2
### get user info by bytebuf
GET http://localhost:8181/bytebuf/user/2
### Get Avatar with ByteBuf return
GET http://localhost:8181/user/avatar
### ByteBuf as param and ByteBuf as return
GET http://localhost:8181/user/bytebuf
### cloudevents
GET http://localhost:8181/user/cloudevents
### get account info
GET http://localhost:8181/account/1
### get user info with rx api
GET http://localhost:8181/rx3/user/2
### get user info with rx api
GET http://localhost:8181/rx3/allPeople
### get user info with rx api
GET http://localhost:8181/rx3/channel1
### get all user
GET http://localhost:8181/users
### get error
GET http://localhost:8181/error
### FNF
GET http://localhost:8181/job1
### Channel1 with Flux
GET http://localhost:8181/channel1
### Channel2 with param & Flux
GET http://localhost:8181/channel2
### channel with Mono return
GET http://localhost:8181/monoChannel
### save user
POST http://localhost:8181/user/save
Content-Type: application/json
{
"id": "1",
"nick": "Jackie"
}
### get app name
GET http://localhost:8181/appName
### enable flux
GET http://localhost:8181/flux
### metrics with prometheus format
GET http://localhost:8181/actuator/prometheus
###