SpringBoot系列springboot静态变量注入

Posted Summer-Zheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot系列springboot静态变量注入相关的知识,希望对你有一定的参考价值。

【场景】

配置文件中的配置项的读取,例如:defaultTimes=3

【变量获取】

1.一般变量获取

@Value("$defaultTimes")
private String defaultTimes;

2.静态变量获取

@Component
public class DefaultUtil
     Public static String defaultTimes;
     @Value("$defaultTimes")
     Public void setDefaultTimes(String dafaultTimes)
         DefaultUtil.defaultTimes=dafaultTimes;
     

 

以上是关于SpringBoot系列springboot静态变量注入的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot系列springboot静态变量注入

SpringBoot系列springboot静态变量注入

重学SpringBoot系列之整合静态资源与模板引擎

SpringBoot学习之路踩坑系列:访问静态资源

Springboot 系列Spring Boot web 开发之静态资源和模版引擎

springboot整合系列