当前位置:   article > 正文

简单整理SpringCloudAlibaba+SpringSecurity+JWT_springcloudalibaba+springsctiry

springcloudalibaba+springsctiry

        耗时两星期整理出了这个十分简易的微服务使用项目

        仓库连接:cloudalibaba_concordance

         具体使用方法请参考gitee仓库,内容已导入了Minio包括如下的使用:

根项目的配置:

  1. <parent>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-parent</artifactId>
  4. <version>2.7.5</version>
  5. <relativePath/> <!-- lookup parent from repository -->
  6. </parent>
  7. <groupId>com.hncj</groupId>
  8. <artifactId>League-management</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <packaging>pom</packaging>
  11. <modules>
  12. <module>League-core</module>
  13. <module>example</module>
  14. <module>common</module>
  15. <module>demo</module>
  16. <module>gateway</module>
  17. <module>rabbit-consumer</module>
  18. <module>rabbit-publisher</module>
  19. </modules>
  20. <dependencyManagement>
  21. <dependencies>
  22. <!-- Nacos 父工程依赖-->
  23. <dependency>
  24. <groupId>com.alibaba.cloud</groupId>
  25. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  26. <version>2021.0.4.0</version>
  27. <type>pom</type>
  28. <scope>import</scope>
  29. </dependency>
  30. <!--mq父工程依赖-->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-amqp</artifactId>
  34. </dependency>
  35. </dependencies>
  36. </dependencyManagement>
  37. <dependencies>
  38. <!--项目热部署-->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-devtools</artifactId>
  42. <scope>runtime</scope>
  43. <optional>true</optional>
  44. </dependency>
  45. </dependencies>

         各部分的使用请直接按照REDME文档的介绍,League-core中配置的yml文件只作为使用各组件时的配置参考,是不生效的

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/68791
推荐阅读
相关标签
  

闽ICP备14008679号