Loading...
SpringBoot Actuator 默认找不到 HttpTrace 的问题Spring 文档地址:https://docs.spring.io/spring-boot/docs/2.3.1.RELEASE/reference/html/production-ready-features.html#production-ready-http-tracing给Spring 注册一个 Htt...
前提条件安装好 nacos, 初始化 SpringBoot 项目nacos 官方地址:https://nacos.io/zh-cn/使用版本Springboot 2.2.2.RELEASENacos config 0.2.7导入 Nacos 依赖 <dependency> <groupId>com.alibaba.boot<...
maven 依赖 <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-cache</artifactId> </dependency>配置启动类在启动类上添加 @EnableCaching@SpringBootApplica...
阿里巴巴数据库事业部出品,为监控而生的数据库连接池 https://github.com/alibaba/druid/wikimaven 安装<dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <ve...
Springboot 设置时区问题默认的Springboot 时区总是少8个小时解决办法在配置文件添加时区 application.yml1.spring.jackson.date-format=yyyy-MM-dd HH:mm:ss spring.jackson.time-zone=Asia/Shanghai 在启动类添加设置时区方法@PostConstruct void setDefau...