记录一: Spring Cloud Alibaba 2021.X 搭建

打印 上一主题 下一主题

主题 978|帖子 978|积分 2934

一   》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》
下载nacos    https://github.com/alibaba/nacos      nacos-server-2.0.3.zip   Windows 版 
解压后,数据库新建nacos库,将 X:\nacos\conf 目录下的 nacos-mysql.sql 文件执行 导入数据表与数据
修改文件 X:\nacos\conf 目录下 application.properties 
  1. 1 #*************** Config Module Related Configurations ***************#
  2. 2 ### If use MySQL as datasource:
  3. 3 spring.datasource.platform=mysql
  4. 4
  5. 5 ### Count of DB:
  6. 6 db.num=1
  7. 7
  8. 8 ### Connect URL of DB:
  9. 9 db.url.0=jdbc:mysql://127.0.0.1:3306/nacos?characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=UTC
  10. 10 db.user.0=root
  11. 11 db.password.0=Root!234
复制代码
修改文件 X:\nacos\bin 目录下的 startup.cmd  标红部分 为单机模式
  1. set BASE_DIR="%BASE_DIR:~0,-5%"
  2. set CUSTOM_SEARCH_LOCATIONS=file:%BASE_DIR%/conf/
  3. set MODE="standalone"   rem “cluster”
  4. set FUNCTION_MODE="all"
  5. set SERVER=nacos-server
  6. set MODE_INDEX=-1
  7. set FUNCTION_MODE_INDEX=-1
  8. set SERVER_INDEX=-1
  9. set EMBEDDED_STORAGE_INDEX=-1
  10. set EMBEDDED_STORAGE=""
复制代码
双击启动 startup.cmd  第一行显示   "nacos is starting with standalone"  为单机模式
  1. "nacos is starting with standalone"
  2.          ,--.
  3.        ,--.'|
  4.    ,--,:  : |                                           Nacos 2.0.3
  5. ,`--.'`|  ' :                       ,---.               Running in stand alone mode, All function modules
  6. |   :  :  | |                      '   ,'\   .--.--.    Port: 8848
  7. :   |   \ | :  ,--.--.     ,---.  /   /   | /  /    '   Pid: 7892
  8. |   : '  '; | /       \   /     \.   ; ,. :|  :  /`./   Console: http://127.0.0.1:8848/nacos/index.html
  9. '   ' ;.    ;.--.  .-. | /    / ''   | |: :|  :  ;_
  10. |   | | \   | \__\/: . ..    ' / '   | .; : \  \    `.      https://nacos.io
  11. '   : |  ; .' ," .--.; |'   ; :__|   :    |  `----.   \
  12. |   | '`--'  /  /  ,.  |'   | '.'|\   \  /  /  /`--'  /
  13. '   : |     ;  :   .'   \   :    : `----'  '--'.     /
  14. ;   |.'     |  ,     .-./\   \  /            `--'---'
  15. '---'        `--`---'     `----'
  16. 2023-04-02 08:56:24,132 INFO Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@2392212b' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  17. 2023-04-02 08:56:24,138 INFO Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  18. 2023-04-02 08:56:24,746 INFO Tomcat initialized with port(s): 8848 (http)
  19. 2023-04-02 08:56:25,248 INFO Root WebApplicationContext: initialization completed in 7616 ms
  20. 2023-04-02 08:56:30,342 INFO Initializing ExecutorService 'applicationTaskExecutor'
  21. 2023-04-02 08:56:30,512 INFO Adding welcome page: class path resource [static/index.html]
  22. 2023-04-02 08:56:31,244 INFO Creating filter chain: Ant [pattern='/**'], []
  23. 2023-04-02 08:56:31,299 INFO Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@29f85fe1, org.springframework.security.web.context.SecurityContextPersistenceFilter@73d3e555, org.springframework.security.web.header.HeaderWriterFilter@bbf9e07, org.springframework.security.web.csrf.CsrfFilter@2af46afd, org.springframework.security.web.authentication.logout.LogoutFilter@3a08078c, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@44924587, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@4487c0c2, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@43a0a32d, org.springframework.security.web.session.SessionManagementFilter@2b289ac9, org.springframework.security.web.access.ExceptionTranslationFilter@31ceba99]
  24. 2023-04-02 08:56:31,483 INFO Initializing ExecutorService 'taskScheduler'
  25. 2023-04-02 08:56:31,501 INFO Exposing 16 endpoint(s) beneath base path '/actuator'
  26. 2023-04-02 08:56:31,638 INFO Tomcat started on port(s): 8848 (http) with context path '/nacos'
  27. 2023-04-02 08:56:31,641 INFO Nacos started successfully in stand alone mode. use external storage
  28. 2023-04-02 08:56:45,175 INFO Initializing Servlet 'dispatcherServlet'
  29. 2023-04-02 08:56:45,189 INFO Completed initialization in 13 ms
复制代码
 
 
访问 http://localhost:8848/nacos/index.html    账号密码为 nacos   

 
二  》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》
 1.idea新建springboot项目《cloud》,保留  .idea    pom.xml   两个 ,其余全部删除。
  修改pom.xml 文件   注意jdk版本对应springboot版本,springboot版本对应的springcloud版本 

  • 2022.x 分支对应的是 Spring Cloud 2022 与 Spring Boot 3.0.x,最低支持 JDK 17。
  • 2021.x 分支对应的是 Spring Cloud 2021 与 Spring Boot 2.6.x,最低支持 JDK 1.8。
  • 2020.0 分支对应的是 Spring Cloud 2020 与 Spring Boot 2.4.x,最低支持 JDK 1.8。
  • 2.2.x 分支对应的是 Spring Cloud Hoxton 与 Spring Boot 2.2.x,最低支持 JDK 1.8。
  • greenwich 分支对应的是 Spring Cloud Greenwich 与 Spring Boot 2.1.x,最低支持 JDK 1.8。
  • finchley 分支对应的是 Spring Cloud Finchley 与 Spring Boot 2.0.x,最低支持 JDK 1.8。
  • 1.x 分支对应的是 Spring Cloud Edgware 与 Spring Boot 1.x,最低支持 JDK 1.7。
  1. 1 <?xml version="1.0" encoding="UTF-8"?>
  2. 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. 3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. 4     <modelVersion>4.0.0</modelVersion>
  5. 5     <parent>
  6. 6         <groupId>org.springframework.boot</groupId>
  7. 7         <artifactId>spring-boot-starter-parent</artifactId>
  8. 8         <version>2.6.10</version>
  9. 9         <relativePath/>
  10. 10     </parent>
  11. 11     <groupId>com.example</groupId>
  12. 12     <artifactId>cloud</artifactId>
  13. 13     <version>0.0.1-SNAPSHOT</version>
  14. 14     <name>cloud</name>
  15. 15     <description>cloud</description>
  16. 16
  17. 17     <packaging>pom</packaging>
  18. 18
  19. 19     <properties>
  20. 20         <java.version>1.8</java.version>
  21. 21         <spring-cloud-alibaba-dependencies-version>2021.0.5.0</spring-cloud-alibaba-dependencies-version>
  22. 22     </properties>
  23. 23
  24. 24     <dependencies>
  25. 25         <dependency>
  26. 26             <groupId>org.springframework.boot</groupId>
  27. 27             <artifactId>spring-boot-starter</artifactId>
  28. 28         </dependency>
  29. 29         <dependency>
  30. 30             <groupId>org.springframework.boot</groupId>
  31. 31             <artifactId>spring-boot-starter-web</artifactId>
  32. 32         </dependency>
  33. 33         <dependency>
  34. 34             <groupId>org.springframework.boot</groupId>
  35. 35             <artifactId>spring-boot-starter-test</artifactId>
  36. 36             <scope>test</scope>
  37. 37             <exclusions>
  38. 38                 <exclusion>
  39. 39                     <groupId>org.junit.vintage</groupId>
  40. 40                     <artifactId>junit-vintage-engine</artifactId>
  41. 41                 </exclusion>
  42. 42             </exclusions>
  43. 43         </dependency>
  44. 44     </dependencies>
  45. 45
  46. 46     <build>
  47. 47         <plugins>
  48. 48             <plugin>
  49. 49                 <groupId>org.springframework.boot</groupId>
  50. 50                 <artifactId>spring-boot-maven-plugin</artifactId>
  51. 51             </plugin>
  52. 52         </plugins>
  53. 53     </build>
  54. 54
  55. 55     <dependencyManagement>
  56. 56         <dependencies>
  57. 57             <dependency>
  58. 58                 <groupId>com.alibaba.cloud</groupId>
  59. 59                 <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  60. 60                 <version>${spring-cloud-alibaba-dependencies-version}</version>
  61. 61                 <type>pom</type>
  62. 62                 <scope>import</scope>
  63. 63             </dependency>
  64. 64         </dependencies>
  65. 65     </dependencyManagement>
  66. 66 </project>
复制代码
 
   2.新建在cloud项目下 新建 maven model 《provider》  注意是maven项目 
    修改pom.xml
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.     <parent>
  7.         <groupId>com.example</groupId>
  8.         <artifactId>cloud</artifactId>
  9.         <version>0.0.1-SNAPSHOT</version>
  10.     </parent>
  11.     <groupId>cn.com.provider</groupId>
  12.     <artifactId>provider</artifactId>
  13.     <properties>
  14.         <maven.compiler.source>8</maven.compiler.source>
  15.         <maven.compiler.target>8</maven.compiler.target>
  16.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17.     </properties>
  18.     <dependencies>
  19.         <dependency>
  20.             <groupId>com.alibaba.cloud</groupId>
  21.             <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  22.         </dependency>
  23.     </dependencies>
  24. </project>
复制代码
  新建 java项目目录与application启动类

 
application.yam文件内容如下
  1. server:
  2.   port: 8001
  3. spring:
  4.   application:
  5.     name: provider
  6.   cloud:
  7.     nacos:
  8.       discovery:
  9.         server-addr: 127.0.0.1:8848
复制代码
ProviderApplication.class 文件内容如下 (注意标红部分)
  1. package cn.com.provider;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
  5. @SpringBootApplication
  6. @EnableDiscoveryClient
  7. public class ProviderApplication {
  8.     public static void main(String[] args) {
  9.         SpringApplication.run(ProviderApplication.class, args);
  10.     }
  11. }
复制代码
创建一个TestController.class  (ResultUtil.result()我自己创建的返回封装,不重要,写个字符串就“provider success” 就好!)
  1. package cn.com.provider.controller;
  2. import cn.com.kity.common.result.ResultUtil;
  3. import org.springframework.web.bind.annotation.GetMapping;
  4. import org.springframework.web.bind.annotation.RequestMapping;
  5. import org.springframework.web.bind.annotation.RestController;
  6. @RestController
  7. @RequestMapping(value = "/test")
  8. public class TestController {
  9.     @GetMapping(value = "/test01")
  10.     public Object eg01(){<br>    //provider success
  11.         return ResultUtil.result();
  12.     }
  13. }
复制代码
启动provider 访问 localhost:8001/test/test01  返回    provider success
nacos服务管理下服务列表出现provider服务

  3.同上创建consumer服务【maven项目】  consumer服务需要调用provider服务 则使用Feign交互
目录结构为:
 

 
pom.xml如下: 多了三个    openfeign;  loadbalancer;  sentinel;
  1. 1 <?xml version="1.0" encoding="UTF-8"?>
  2. 2 <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. 3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. 4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. 5     <modelVersion>4.0.0</modelVersion>
  6. 6     <parent>
  7. 7         <groupId>com.example</groupId>
  8. 8         <artifactId>cloud</artifactId>
  9. 9         <version>0.0.1-SNAPSHOT</version>
  10. 10     </parent>
  11. 11
  12. 12     <artifactId>consumer</artifactId>
  13. 13
  14. 14     <properties>
  15. 15         <maven.compiler.source>8</maven.compiler.source>
  16. 16         <maven.compiler.target>8</maven.compiler.target>
  17. 17         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. 18     </properties>
  19. 19     <dependencies>
  20. 20         <dependency>
  21. 21             <groupId>com.alibaba.cloud</groupId>
  22. 22             <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  23. 23         </dependency>
  24. 24         
  25. 25         <dependency>
  26. 26             <groupId>org.springframework.cloud</groupId>
  27. 27             <artifactId>spring-cloud-starter-openfeign</artifactId>
  28. 28             <version>3.1.6</version>
  29. 29         </dependency>
  30. 30         
  31. 31         <dependency>
  32. 32             <groupId>org.springframework.cloud</groupId>
  33. 33             <artifactId>spring-cloud-loadbalancer</artifactId>
  34. 34             <version>3.1.6</version>
  35. 35         </dependency>
  36. 36         
  37. 37         <dependency>
  38. 38             <groupId>com.alibaba.cloud</groupId>
  39. 39             <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  40. 40             <exclusions>
  41. 41                 <exclusion>
  42. 42                 <groupId>com.fasterxml.jackson.dataformat</groupId>
  43. 43                     <artifactId>jackson-dataformat-xml</artifactId>
  44. 44                 </exclusion>
  45. 45             </exclusions>
  46. 46         </dependency>
  47. 47     </dependencies>
  48. 48 </project>
复制代码
application.yml内容如下:
  1. 1 server:
  2. 2   port: 8002
  3. 3 spring:
  4. 4   application:
  5. 5     name: consumer
  6. 6   cloud:
  7. 7     nacos:
  8. 8       discovery:
  9. 9         server-addr: 127.0.0.1:8848
  10. 10 feign:
  11. 11   sentinel:
  12. 12     enabled: true #开启feign对sentinel的支持 服务降级
复制代码
 
创建ConsumerApplication.class 内容如下:【注意标红部分】
  1. package cn.com.consumer;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
  5. import org.springframework.cloud.openfeign.EnableFeignClients;
  6. @SpringBootApplication
  7. @EnableFeignClients
  8. @EnableDiscoveryClient
  9. public class ConsumerApplication {
  10.     public static void main(String[] args) {
  11.         SpringApplication.run(ConsumerApplication.class, args);
  12.     }
  13. }
复制代码
创建FeignFallBack.class 内容如下:
  1. package cn.com.consumer.feign;
  2. import org.springframework.cloud.openfeign.FallbackFactory;
  3. import org.springframework.stereotype.Component;
  4. @Component
  5. public class FeignFallBack implements FallbackFactory<ConsumerFeignToProvider> {
  6.     @Override
  7.     public ConsumerFeignToProvider create(Throwable cause) {
  8.         return () -> "provider 服务提供者挂了!!!!!!";
  9.     }
  10. }
复制代码
 
创建ConsumerFeignToProvider.class内容如下:
标红地方为provider服务名称,
application.yml中
  1. <strong>spring:
  2.   application:
  3.     name: provider</strong>
复制代码
  1. package cn.com.consumer.feign;
  2. import org.springframework.cloud.openfeign.FeignClient;
  3. import org.springframework.web.bind.annotation.GetMapping;
  4. @FeignClient(name = "provider",fallbackFactory = FeignFallBack.class)
  5. public interface ConsumerFeignToProvider {
  6.     @GetMapping("/test/test01")
  7.     String test01();
  8. }
复制代码
 
创建TestController.class内容如下
  1. 1 package cn.com.consumer.controller;
  2. 2
  3. 3 import cn.com.consumer.feign.ConsumerFeignToProvider;
  4. 4 import org.springframework.web.bind.annotation.GetMapping;
  5. 5 import org.springframework.web.bind.annotation.RequestMapping;
  6. 6 import org.springframework.web.bind.annotation.RestController;
  7. 7
  8. 8 import javax.annotation.Resource;
  9. 9
  10. 10 @RestController
  11. 11 @RequestMapping(value = "/consumer")
  12. 12 public class TestController {
  13. 13
  14. 14     @Resource
  15. 15     ConsumerFeignToProvider cftp;
  16. 16
  17. 17     @GetMapping(value = "/eg01")
  18. 18     public Object eg01(){
  19. 19         return "consumer01 掉用 ===" + cftp.test01() ;
  20. 20     }
  21. 21
  22. 22 }
复制代码
启动consumer服务:
nacos服务管理下服务列表出现consumer服务

访问http://localhost:8002/consumer/eg01 返回
consumer01 掉用 ===provider success
停止provider服务  访问http://localhost:8002/consumer/eg01 返回
consumer01 掉用 ===provider 服务提供者挂了!!!!!!
 
====================================================结束===================================================gateway+++conifg======================================================

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

怀念夏天

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表