Spring 注入properties文件
程序员文章站
2022-05-02 08:51:21
...
应用场景:比如系统名称,系统版本等很多地方我们可以从properties文件中获取
1.在xml文件中引入配置文件
<!-- 引入属性文件 -->
<context:property-placeholder location="classpath:properties/*.properties" />
这里我犯了一个错,如果你在controller获取properties文件中的值,要在springmvc.xml中写入上面这句话,其他service等要获取都一样,在相应xml配置文件中写入上面这句话。
2.获取该值(我在controller层获取)
@Value("${javaweb.name}")
private String javawebname;
这样就搞定了,然后在方法里用该属性就可以了,但是问题来了,中文乱码
如果properties文件是UTF-8编码的,并且需要读取的内容包含中文,那么采取默认的property-placeholder标签配置,则读取属性时便会出现乱码!
解决办法:
将原来的修改为:
<!-- 引入属性文件 -->
<context:property-placeholder location="classpath:properties/*.properties" file-encoding="UTF-8"/>
加file-encoding="utf-8"就可以了。