spring cloud
t18092838767
这个作者很懒,什么都没留下…
展开
-
快速构建Springboot gradle多模块项目
文章目录1、创建根项目2、创建子项目3、删除没用的文件4、配置子项目关联4.1 根项目settings.gradle配置4.2 根目录build.gradle配置5、构建一下就好了1、创建根项目File ==> new project ==> Spring Initializr ==> next =>next(使用idea常规操作,创建一个spring boot项目。在创建过程设置好自己的项目保存路径)删除src文件夹2、创建子项目本次教程创建两个选原创 2020-12-16 14:24:03 · 392 阅读 · 0 评论 -
快速使用spring-cloud-gateway
文章目录1、先搭gateway架子2、上配置3、 编写过滤器3.1 定义过滤过程想干的事3.2 spring管理起来4、定义路由失败后的回调5、使用场景:使用网关路由的情况,当匹配某个路径时自动转发到其他的服务,没匹配不转发如: 访问localhost/test/时 转发到 localhost:1111/test/访问localhost/aa/** 时 不转发正题1、先搭gateway架子把下面这引入,这样已经可以用了dependencies { implementatio原创 2020-10-16 11:50:28 · 351 阅读 · 1 评论 -
springcloud gateway filter中不能使用feign的解决
文章目录背景解决办法1 工具类2、启动类背景在springcloud gateway中使用feign时,网关一般都会用到gatewayFilter.但在gatewayFilter沒法注入feign。这和servlet, filter的加载顺序有关解决办法从spring上下文中获取feign的自定义Bean,然后在正常用1 工具类import org.springframework.beans.BeansException;import org.springframework.context.A原创 2020-10-14 18:31:09 · 6416 阅读 · 2 评论 -
快速使用springcloud feign
文章目录1 加依赖2 开启注解3、避坑配置4 application.yml配置5 使用1 加依赖 implementation('org.springframework.cloud:spring-cloud-starter-openfeign')2 开启注解@SpringBootApplication@EnableFeignClients(basePackages = "(不加有坑)你的包路径")public class JupyterApplication { public s原创 2020-10-14 18:15:38 · 165 阅读 · 0 评论 -
springcloud使用eureka进行服务注册发现和负载均衡
文章目录Eureka简介1 创建 Eureka-server服务注册中心1.1 创建Springboot项目1.2 开启注解配置1.3 添加application.yml配置1.4 启动测试2 创建Eureka服务提供者2.1 创建Springboot项目,添加依赖2.2 开启注解2.3 修改application.yml2.4 创建controller2.5 启动测试3 创建消费者3.1 创建springboot项目,添加依赖3.2 开启注解,添加配置3.3 修改application.yml3.4 调原创 2020-05-13 14:35:28 · 418 阅读 · 0 评论