Springboot使用@RefreshScope注解实现配置文件的动态加载

目录

  • pom.xml
  • properties
  • 启动类
  • 配置类
  • controller
  • 打包
  • springcloud对应的springboot版本
  • 参考:
spring-boot-starter-actuator提供服务健康检查和暴露内置的url接口。
spring-cloud-starter-config提供动态刷新的一些支持和注解。

pom.xml
4.0.0org.springframework.bootspring-boot-starter-parent2.4.6 com.xiaobudemo-for-mybatis-plus0.0.1-SNAPSHOTdemo-for-mybatis-plusdemo-for-mybatis-plus1.82020.0.3org.springframework.bootspring-boot-starter-weborg.springframework.bootspring-boot-starter-testtestasmorg.ow2.asmcom.baomidoumybatis-plus-boot-starter3.4.2org.projectlomboklombok1.16.10cn.hutoolhutool-all5.3.2io.springfoxspringfox-swagger22.9.2guavacom.google.guavaio.springfoxspringfox-swagger-ui2.9.2com.google.guavaguava29.0-jrecom.alibabaeasyexcel2.0.2junitjunitcom.xuxuelixxl-job-core2.3.0mysqlmysql-connector-javaorg.springframework.cloudspring-cloud-starter-configorg.springframework.bootspring-boot-starter-actuatororg.springframework.cloudspring-cloud-starter-bootstraporg.springframework.cloudspring-cloud-dependencies${spring-cloud.version}pomimportsrc/main/resourcessrc/main/java**/*.xmltrueApp【Springboot使用@RefreshScope注解实现配置文件的动态加载】org.springframework.bootspring-boot-maven-plugin2.4.5


properties
########## Mybatis 自身配置 ##########logging.level.com.xiaobu=debugmybatis-plus.type-aliases-package=com.xiaobu.entitymybatis-plus.mapper-locations=classpath:com/xiaobu/mapper/xml/*.xml# 控制台打印sql 带参数 无法写入文件#mybatis-plus.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl# 将sql 写入文件 带参数mybatis-plus.configuration.log-impl=org.apache.ibatis.logging.slf4j.Slf4jImpl#集成mysql数据库的配置spring.datasource.driverClassName=com.mysql.cj.jdbc.Driverspring.datasource.url=jdbc:mysql://localhost:3306/master0?useSSL=false&useUnicode=true&characterEncoding=utf-8&autoReconnect=true&serverTimezone=Asia/Shanghaispring.datasource.username=rootspring.datasource.password=root#测试动态刷新配置order.pay-timeout-seconds=9999order.create-frequency-seconds=600#暴露内置的刷新配置文件url,这个必须写,否则无法刷新配置文件management.endpoints.web.exposure.include=refresh#management.endpoints.web.exposure.include=env,refresh#management.endpoints.web.exposure.include=env,refresh


启动类
package com.xiaobu; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.context.properties.ConfigurationPropertiesScan; /** * @author 小布 */@SpringBootApplication@ConfigurationPropertiesScanpublic class DemoForMybatisPlusApplication {public static void main(String[] args) {SpringApplication.run(DemoForMybatisPlusApplication.class, args); }}


配置类
package com.xiaobu.config; import lombok.Data; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.cloud.context.config.annotation.RefreshScope; import org.springframework.stereotype.Component; /** * @author 小布 */@Component@ConfigurationProperties(prefix = "order")@RefreshScope@Datapublic class OrderProperties {/*** 订单支付超时时长,单位:秒。*/private Integer payTimeoutSeconds; /*** 订单创建频率,单位:秒*/private Integer createFrequencySeconds; }


controller
package com.xiaobu.controller; import com.xiaobu.config.OrderProperties; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.cloud.context.config.annotation.RefreshScope; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * The type Refresh controller. * * @author 小布 * @version 1.0.0 * @className RefreshController.java * @createTime 2021年09月06日 15:38:00 */@RestController@RequestMapping("refresh")@RefreshScopepublic class RefreshController {@Autowiredprivate OrderProperties orderProperties; @Value(value = "https://www.it610.com/article/${order.pay-timeout-seconds}")private Integer payTimeoutSeconds; /*** Test string.** @return the string*/@GetMapping("test")public String test() {return "payTimeoutSeconds:" + payTimeoutSeconds; }@GetMapping("test01")public String test01() {return orderProperties.toString(); }}


打包 执行
mvn clean package -Dmaven.test.skip=true

cmd启动jar 并指定外部配置文件
java -jar App.jar--spring.config.location=D:/application.properties

访问:http://localhost:8080/refresh/test
Springboot使用@RefreshScope注解实现配置文件的动态加载
文章图片

修改配置文件内容:
Springboot使用@RefreshScope注解实现配置文件的动态加载
文章图片

执行 POST http://localhost:8080/actuator/refresh
Springboot使用@RefreshScope注解实现配置文件的动态加载
文章图片

再次访问:http://localhost:8080/refresh/test
Springboot使用@RefreshScope注解实现配置文件的动态加载
文章图片

访问:http://localhost:8080/refresh/test01
Springboot使用@RefreshScope注解实现配置文件的动态加载
文章图片


springcloud对应的springboot版本 Springboot使用@RefreshScope注解实现配置文件的动态加载
文章图片

Springboot使用@RefreshScope注解实现配置文件的动态加载
文章图片


参考: springcloud对应的springboot版本
Springboot 使用@RefreshScope 注解,实现配置文件的动态加载
Spring boot 应用实现动态刷新配置
Spring Boot 指定外部启动配置文件
到此这篇关于Springboot使用@RefreshScope注解实现配置文件的动态加载的文章就介绍到这了,更多相关Springboot @RefreshScope配置文件动态加载内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    推荐阅读