这篇文章主要介绍“如何解决使用@Value(${×××))从properties文件取值碰到的问题”,在日常操作中,相信很多人在如何解决使用@Value(${×××))从properties文件取值碰到的问题问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”如何解决使用@Value(${×××))从properties文件取值碰到的问题”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
@Value(${×××))从properties文件取值
前提:
你的实体类已经加入到了IOC容器中(使用@Compenet等注解)
报错代码:
@Value("${driver}")private String driver;@Value("${url}")private String url;@Value("${username}")private String userName;@Value("${password}")private String password;
properties文件
driver=com.mysql.cj.jdbc.Driverurl=jdbc:mysql://localhost:3306/abc?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&useSSL=falseusername=rootpassword=admin
此时你这样写 @Value 注解是无法获取 properties文件中的值的
必须要在properties文件属性前加上前缀(任意)即可
如:
jdbc.driver=com.mysql.cj.jdbc.Driverjdbc.url=jdbc:mysql://localhost:3306/abc?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&useSSL=falsejdbc.username=rootjdbc.password=admin
对应的类也要修改
@Value("${jdbc.driver}")private String driver;@Value("${jdbc.url}")private String url;@Value("${jdbc.username}")private String userName;@Value("${jdbc.password}")private String password;
这样就可以正常获取了
补充:
静态变量无法注入
Springboot默认属性文件是application.properties
Spring @Value("${}")空值处理
场景:
Test类中有一个在application.properties配置的属性email
@Value("${email}")private String email;
如果email在配置中没有配置,应用启动时将报找不到该属性异常,导致启动失败。
解决方案1:
在Test类上同时加上@Component,@Lazy
解决方案2:
在springboot中提供了@ConditionalOnProperty注解
设置注入条件
@ConditionalOnProperty(name = "flag", havingValue = "true")
仅当配置文件application.properties中flag属性为true时才会实例化bean
到此,关于“如何解决使用@Value(${×××))从properties文件取值碰到的问题”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!