Spring加载Properties配置,通过注解读取配置
在SpringMvc.xml中加上
<context:property-placeholder location="classpath:*.properties"/>
也就是添加配置文件的路径
然后代码中以注解形式获取配置文件中的配置
@Value("${uploadFolder}")
private String UPLOAD_FOLDER;
*.properties中
#本地存...
原创
2019-09-20 10:43:27 ·
304 阅读 ·
0 评论