Skip to content

Commit 891346d

Browse files
authored
Springboot demo multi protocol (baidu#264)
* springboot demo multi protocol
1 parent c6d8e01 commit 891346d

File tree

3 files changed

+47
-9
lines changed

3 files changed

+47
-9
lines changed

examples/demo-api/pom.xml

+9-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,13 @@
99
</parent>
1010

1111
<artifactId>demo-api</artifactId>
12-
12+
13+
<dependencies>
14+
<dependency>
15+
<groupId>com.baidu.cloud</groupId>
16+
<artifactId>spring-cloud-baidu-thirdparty-commons</artifactId>
17+
<version>2022.2.0-SNAPSHOT</version>
18+
<optional>true</optional>
19+
</dependency>
20+
</dependencies>
1321
</project>

examples/demo-api/src/main/java/com/baidu/cloud/demo/api/UserService.java

+30-7
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,23 @@
1717
package com.baidu.cloud.demo.api;
1818

1919
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;
2028

2129
import java.util.List;
2230
import java.util.Map;
2331

32+
/**
33+
* 默认情况无需增加SpringMVC注解,
34+
* 服务端对外提供Rest服务时才需要添加SpringMVC注解
35+
*/
36+
@RequestMapping("/user")
2437
public interface UserService {
2538

2639
/**
@@ -29,22 +42,27 @@ public interface UserService {
2942
* @param userId
3043
* @return
3144
*/
32-
User getUser(Long userId);
45+
@GetMapping
46+
User getUser(@RequestParam("userId") Long userId);
3347

34-
User updateUser(User user);
48+
@PutMapping
49+
User updateUser(@RequestBody User user);
3550

3651
/**
3752
* 返回值void
3853
*
3954
* @param userId
4055
*/
41-
void deleteUser(Long userId);
56+
@DeleteMapping
57+
void deleteUser(@RequestParam("userId")Long userId);
4258

43-
Long saveUser(User user);
59+
@PostMapping
60+
Long saveUser(@RequestBody User user);
4461

4562
/**
4663
* 请求和响应参数均为空
4764
*/
65+
@GetMapping("/connect")
4866
void connect();
4967

5068
/**
@@ -55,17 +73,20 @@ public interface UserService {
5573
* @param user
5674
* @return
5775
*/
58-
User multiParams(Long userId, User user);
76+
@PostMapping("/multiparams")
77+
User multiParams(@RequestParam("userId") Long userId, @RequestBody User user);
5978

6079
/**
6180
* 返回List集合类 客户端需配置使用pb2-java序列化模式 - java api:ServiceConfig.setSerializeMode("pb2-java"); - spring boot 配置:
6281
* starlight.client.config.default.serializeMode=pb2-java
6382
*
6483
* @return
6584
*/
85+
@GetMapping("/list")
6686
List<User> allUsers();
6787

68-
String userName(Long userId);
88+
@GetMapping("/name/{userId}")
89+
String userName(@PathVariable("userId") Long userId);
6990

7091
/**
7192
* 返回map集合类 客户端需配置使用pb2-java序列化模式 - java api:ServiceConfig.setSerializeMode("pb2-java"); - spring boot 配置:
@@ -75,13 +96,15 @@ public interface UserService {
7596
* @param user
7697
* @return
7798
*/
78-
Map<Long, User> userMap(Long userId, User user);
99+
@PostMapping("/map")
100+
Map<Long, User> userMap(@RequestParam("userId") Long userId, @RequestBody User user);
79101

80102
/**
81103
* 方法抛出异常
82104
*
83105
* @param userId
84106
* @return
85107
*/
108+
@GetMapping("/exception")
86109
User userExp(Long userId);
87110
}

examples/spring-boot-examples/springboot-demo-consumer/src/main/java/com/baidu/cloud/demo/consumer/service/impl/UserRestServiceImpl.java

+8-1
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,18 @@ public class UserRestServiceImpl implements UserRestService {
3535
/**
3636
* 不依赖注册发现,直连方式调用
3737
*/
38-
@RpcProxy(remoteUrl = "brpc://localhost:8777")
38+
@RpcProxy(remoteUrl = "localhost:8777", protocol = "brpc")
3939
private UserService userService;
4040

41+
/**
42+
* 不依赖注册发现,直连方式调用
43+
*/
44+
@RpcProxy(remoteUrl = "localhost:8777", protocol = "springrest")
45+
private UserService restUserService;
46+
4147
@Override
4248
public User getUser(Long userId) {
49+
System.out.println("springrest result: " + restUserService.getUser(userId));
4350
return userService.getUser(userId);
4451
}
4552

0 commit comments

Comments
 (0)