• 标签: springboot 共 8 个结果.
  • spingboot自动装配 从Application类的@SpringBootApplication注解开始: @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Docu...
  • springboot启动常见的错误 一、引入druid后出现错误 Description: Failed to configure a DataSource: 'url' attribute is not specified and no emb...
  • 防止反编译代码泄露--代码混淆 工具类不要加,因为加上后工具类不能使用 建议玩玩而已,不要在实际开发中使用 Controller混淆后会找不到入口 Properties也不建议混淆 实体类也建议保留(因为Jackson需要序列...
  • feign 调用问题 一、Read timed out问题 问题描述 feign调用超时,会出现这个问题。 一般来说当我们的业务需要处理的时间很大时,会出现这个问题。例如,上传excel文件。 那这里我们可以进行feign的超时时间设置。这里只针...
  • flowable--springboot集成(一) 以版本号:6.3.0,在线文档:https://tkjohn.github.io/flowable-userguide/#configurationRoot [TOC] 一、引入版本号 &l...
  • Springboot集成Prometheus 添加依赖pom依赖 <!-- 监控 --> <dependency> <groupId>org.springframework.boot</groupId&g...
  • 常用的yml配置 一、redis spring: redis: host: localhost port: 6379 shutdown-timeout: 100 database: 3 lettuce: pool: max-idle: 8 min...
  • 安装RabbitMQ docker的安装方式 一、进入docker hub官网 二、搜索rabbitMq,进入官方的镜像,选择带有“mangement”的版本(包含web管理页面):后面以rabbitmq:3.7.7-management这个版本...
  • 1