SpringCloud接入Soul网关

说明

  • 此篇文章是教你如何将springCloud接口,快速接入到soul网关。

  • 请在 soul-admin 后台将 springCloud 插件设置为开启。

  • 接入前,请正确的启动 soul-admin以及搭建环境 Ok。

引入网关 springCloud的插件支持

  • 在网关的 pom.xml 文件中引入如下依赖。
  1. <!--soul springCloud plugin start-->
  2. <dependency>
  3. <groupId>org.dromara</groupId>
  4. <artifactId>soul-spring-boot-starter-plugin-springcloud</artifactId>
  5. <version>${last.version}</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>org.dromara</groupId>
  9. <artifactId>soul-spring-boot-starter-plugin-httpclient</artifactId>
  10. <version>${last.version}</version>
  11. </dependency>
  12. <!--soul springCloud plugin end-->
  13. <dependency>
  14. <groupId>org.springframework.cloud</groupId>
  15. <artifactId>spring-cloud-commons</artifactId>
  16. <version>2.2.0.RELEASE</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.cloud</groupId>
  20. <artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
  21. <version>2.2.0.RELEASE</version>
  22. </dependency>
  • 如果你使用 eureka 作为 springCloud的注册中心

    • 新增如下依赖:
    1. <dependency>
    2. <groupId>org.springframework.cloud</groupId>
    3. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
    4. <version>2.2.0.RELEASE</version>
    5. </dependency>
  • 在网关的yml文件中 新增如下配置:

    1. eureka:
    2. client:
    3. serviceUrl:
    4. defaultZone: http://localhost:8761/eureka/ # 你的eureka地址
    5. instance:
    6. prefer-ip-address: true
  • 如果你使用 nacos 作为 springCloud的注册中心

    • 新增如下依赖:
    1. <dependency>
    2. <groupId>com.alibaba.cloud</groupId>
    3. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
    4. <version>2.1.0.RELEASE</version>
    5. </dependency>
  • 在网关的yml文件中 新增如下配置:

    1. spring:
    2. cloud:
    3. nacos:
    4. discovery:
    5. server-addr: 127.0.0.1:8848 # 你的nacos地址
  • 重启你的网关服务。

SpringCloud服务接入网关

  • 在你提供服务的项目中,引入如下依赖:
  1. <dependency>
  2. <groupId>org.dromara</groupId>
  3. <artifactId>soul-spring-boot-starter-client-springcloud</artifactId>
  4. <version>${last.version}</version>
  5. </dependency>
  • 注册中心详细接入配置请参考:注册中心接入

  • 在你的 controller的接口上加上 @SoulSpringCloudClient 注解

  • 你可以把注解加到 Controller 类上面, 里面的path属性则为前缀,如果含有 /** 代表你的整个接口需要被网关代理

    • 举列子 (1): 代表 /test/payment, /test/findByUserId 都会被网关代理。

    ``` @RestController @RequestMapping(“/test”) @SoulSpringCloudClient(path = “/test/**”) public class HttpTestController {

  1. @PostMapping("/payment")
  2. public UserDTO post(@RequestBody final UserDTO userDTO) {
  3. return userDTO;
  4. }
  5. @GetMapping("/findByUserId")
  6. public UserDTO findByUserId(@RequestParam("userId") final String userId) {
  7. UserDTO userDTO = new UserDTO();
  8. userDTO.setUserId(userId);
  9. userDTO.setUserName("hello world");
  10. return userDTO;
  11. }
  12. }
  13. ```
  1. * 举列子 2): 代表 `/order/save`,会被网关代理,而`/order/findById` 则不会。
  2. ```java
  3. @RestController
  4. @RequestMapping("/order")
  5. @SoulSpringCloudClient(path = "/order")
  6. public class OrderController {
  7. @PostMapping("/save")
  8. @SoulSpringMvcClient(path = "/save")
  9. public OrderDTO save(@RequestBody final OrderDTO orderDTO) {
  10. orderDTO.setName("hello world save order");
  11. return orderDTO;
  12. }
  13. @GetMapping("/findById")
  14. public OrderDTO findById(@RequestParam("id") final String id) {
  15. OrderDTO orderDTO = new OrderDTO();
  16. orderDTO.setId(id);
  17. orderDTO.setName("hello world findById");
  18. return orderDTO;
  19. }
  20. }
  • 举列子 (3): isFull:true 代表 /sb-demo7-api/**,整个服务会被网关代理
  1. soul:
  2. client:
  3. registerType: http
  4. serverLists: http://localhost:9095
  5. props:
  6. contextPath: /http
  7. appName: http
  8. isFull: true
  9. # registerType : 服务注册类型,支持 http/zookeeper
  10. # serverList: 为http注册类型时,填写Soul-Admin项目的地址,注意加上http://,多个地址用英文逗号分隔
  11. # 为zookeeper注册类型时,填写zookeeper地址,多个地址用英文分隔
  12. # contextPath: 为你的这个mvc项目在soul网关的路由前缀,这个你应该懂意思把? 比如/order ,/product 等等,网关会根据你的这个前缀来进行路由.
  13. # appName:你的应用名称,不配置的话,会默认取 dubbo配置中application 中的名称
  14. # isFull: 设置true 代表代理你的整个服务,false表示代理你其中某几个controller
  1. @RestController
  2. @RequestMapping("/order")
  3. public class OrderController {
  4. @PostMapping("/save")
  5. @SoulSpringMvcClient(path = "/save")
  6. public OrderDTO save(@RequestBody final OrderDTO orderDTO) {
  7. orderDTO.setName("hello world save order");
  8. return orderDTO;
  9. }
  10. @GetMapping("/findById")
  11. public OrderDTO findById(@RequestParam("id") final String id) {
  12. OrderDTO orderDTO = new OrderDTO();
  13. orderDTO.setId(id);
  14. orderDTO.setName("hello world findById");
  15. return orderDTO;
  16. }
  17. }
  • 启动你的服务,如果输出以下日志:http client register success,证明你的接口已经被注册到soul网关。

插件设置

  • soul-admin 插件管理中,把 springCloud插件设置为开启。

用户请求

  • 说白了,你之前怎么请求就怎么请求,没有很大的变动,变动的地方有2点。

  • 第一点,你之前请求的域名是你自己的服务,现在要换成网关的域名 (这个你听的懂?)

  • 第二点,soul网关需要有一个路由前缀,这个路由前缀就是你接入项目进行配置 contextPath,如果熟的话,可以自由在 soul-admin 中的 springCloud插件进行自由更改。

  1. # 比如你有一个 order服务 它有一个接口,请求路径 http://localhost:8080/test/save
  2. # 现在就需要换成:http://localhost:9195/order/test/save
  3. # 其中 localhost:9195 为网关的ip端口,默认端口是9195 ,/order 是你接入网关配置的 contextPath
  4. # 其他参数,请求方式不变。
  5. # 我讲到这里还不懂? 请加群问吧
  • 然后你就可以进行访问了,如此的方便与简单。