• feign 调用问题 一、Read timed out问题 问题描述 feign调用超时,会出现这个问题。 一般来说当我们的业务需要处理的时间很大时,会出现这个问题。例如,上传excel文件。 那这里我们可以进行feign的超时时间设置。这里只针...
  • flowable--springboot集成(一) 以版本号:6.3.0,在线文档:https://tkjohn.github.io/flowable-userguide/#configurationRoot [TOC] 一、引入版本号 &l...
  • springboot启动常见的错误 一、引入druid后出现错误 Description: Failed to configure a DataSource: 'url' attribute is not specified and no emb...
  • Springboot集成Prometheus 添加依赖pom依赖 <!-- 监控 --> <dependency> <groupId>org.springframework.boot</groupId&g...
  • nacos--springcloud集成 这里使用nacos客户端的版本为2.0.3 引依赖 版本依赖关系 需注意版本直接的相关依赖,这里我选择 springboot :2.2.4.RELEASE springcloud :Hoxton.S...
  • 常用的yml配置 一、redis spring: redis: host: localhost port: 6379 shutdown-timeout: 100 database: 3 lettuce: pool: max-idle: 8 min...
  • gateway网关的一般常用配置说明 路由网关的配置 一、开启服务id去注册中心获取转发的地址 spring: cloud: gateway: # 设置与服务注册发现组件结合,这样可以采用服务名的路由策略 discovery: locator: ...
  • spingboot自动装配 从Application类的@SpringBootApplication注解开始: @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Docu...
  • 1