SpringBoot 加载自定义 properties文件
程序员文章站
2024-03-14 15:13:22
...
1、在我们的springboot启动类中,加上注解:
@PropertySource(value = "classpath:sms.properties",encoding = "utf-8")
如果是多个文件的话,可用多个@PropertySource注解也可以如下:
@PropertySource(value = {"classpath:mail.properties","classpath:sms.properties"},encoding = "utf-8")
2、在我们的使用类中添加@Value注解
@Value("${sms.code.model:123456}") // 如果配置文件中存在指定配置,则读取,若不存在则使用:后的默认值
private String codeModel;
3、为了防止中文乱码,请在PropertySource后制定encoding方式,然后系统的整体编码风格也需要指定一下
推荐阅读
-
SpringBoot读取自定义的Properties
-
SpringBoot自定义Properties
-
Springboot读取自定义properties文件和application.properties文件的值
-
SpringBoot 加载自定义 properties文件
-
SpringBoot自定义读取properties
-
Spring加载properties文件的方法
-
Spring加载properties文件的方法
-
application.properties文件没有叶子图标,springboot项目启动的时候也报错
-
Spring加载properties文件的两种方式
-
详解SpringMVC加载配置Properties文件的几种方式