17
17
package com .baidu .cloud .demo .api ;
18
18
19
19
import com .baidu .cloud .demo .api .model .User ;
20
+ import com .baidu .cloud .thirdparty .springframework .web .bind .annotation .DeleteMapping ;
21
+ import com .baidu .cloud .thirdparty .springframework .web .bind .annotation .GetMapping ;
22
+ import com .baidu .cloud .thirdparty .springframework .web .bind .annotation .PathVariable ;
23
+ import com .baidu .cloud .thirdparty .springframework .web .bind .annotation .PostMapping ;
24
+ import com .baidu .cloud .thirdparty .springframework .web .bind .annotation .PutMapping ;
25
+ import com .baidu .cloud .thirdparty .springframework .web .bind .annotation .RequestBody ;
26
+ import com .baidu .cloud .thirdparty .springframework .web .bind .annotation .RequestMapping ;
27
+ import com .baidu .cloud .thirdparty .springframework .web .bind .annotation .RequestParam ;
20
28
21
29
import java .util .List ;
22
30
import java .util .Map ;
23
31
32
+ /**
33
+ * 默认情况无需增加SpringMVC注解,
34
+ * 服务端对外提供Rest服务时才需要添加SpringMVC注解
35
+ */
36
+ @ RequestMapping ("/user" )
24
37
public interface UserService {
25
38
26
39
/**
@@ -29,22 +42,27 @@ public interface UserService {
29
42
* @param userId
30
43
* @return
31
44
*/
32
- User getUser (Long userId );
45
+ @ GetMapping
46
+ User getUser (@ RequestParam ("userId" ) Long userId );
33
47
34
- User updateUser (User user );
48
+ @ PutMapping
49
+ User updateUser (@ RequestBody User user );
35
50
36
51
/**
37
52
* 返回值void
38
53
*
39
54
* @param userId
40
55
*/
41
- void deleteUser (Long userId );
56
+ @ DeleteMapping
57
+ void deleteUser (@ RequestParam ("userId" )Long userId );
42
58
43
- Long saveUser (User user );
59
+ @ PostMapping
60
+ Long saveUser (@ RequestBody User user );
44
61
45
62
/**
46
63
* 请求和响应参数均为空
47
64
*/
65
+ @ GetMapping ("/connect" )
48
66
void connect ();
49
67
50
68
/**
@@ -55,17 +73,20 @@ public interface UserService {
55
73
* @param user
56
74
* @return
57
75
*/
58
- User multiParams (Long userId , User user );
76
+ @ PostMapping ("/multiparams" )
77
+ User multiParams (@ RequestParam ("userId" ) Long userId , @ RequestBody User user );
59
78
60
79
/**
61
80
* 返回List集合类 客户端需配置使用pb2-java序列化模式 - java api:ServiceConfig.setSerializeMode("pb2-java"); - spring boot 配置:
62
81
* starlight.client.config.default.serializeMode=pb2-java
63
82
*
64
83
* @return
65
84
*/
85
+ @ GetMapping ("/list" )
66
86
List <User > allUsers ();
67
87
68
- String userName (Long userId );
88
+ @ GetMapping ("/name/{userId}" )
89
+ String userName (@ PathVariable ("userId" ) Long userId );
69
90
70
91
/**
71
92
* 返回map集合类 客户端需配置使用pb2-java序列化模式 - java api:ServiceConfig.setSerializeMode("pb2-java"); - spring boot 配置:
@@ -75,13 +96,15 @@ public interface UserService {
75
96
* @param user
76
97
* @return
77
98
*/
78
- Map <Long , User > userMap (Long userId , User user );
99
+ @ PostMapping ("/map" )
100
+ Map <Long , User > userMap (@ RequestParam ("userId" ) Long userId , @ RequestBody User user );
79
101
80
102
/**
81
103
* 方法抛出异常
82
104
*
83
105
* @param userId
84
106
* @return
85
107
*/
108
+ @ GetMapping ("/exception" )
86
109
User userExp (Long userId );
87
110
}
0 commit comments