概述
在springmvc.xml中引入了属性文件
<context:property-placeholder location=“classpath*:freemarker.properties”></context:property-placeholder>
freemarker.properties内容:
path=C:/myproject/test_project/health01/health01_mobile/src/main/webapp/pages/
在service类型使用@value 引入,如下:
@Value(" p a t h " ) p r i v a t e S t r i n g p a t h ; 启 动 时 , 报 错 : C o u l d n o t r e s o l v e p l a c e h o l d e r ′ p a t h ′ i n v a l u e " {path}") private String path; 启动时,报错:Could not resolve placeholder 'path' in value " path")privateStringpath;启动时,报错:Couldnotresolveplaceholder′path′invalue"{path}"
分析原因:
在项目中存在两个属性文件:
freemarker.properties
db.properties
而在前面使用property-placeholder引入了db.properties文件:
<context:property-placeholder location=“classpath*:db.properties”/>
而freemarker.properties是在db.properties属性文件后引入的,而spring的加载机制:Spring容器采用反射扫描的发现机制,在探测到Spring容器中有一个org.springframework.beans.factory.config.PropertyPlaceholderConfigurer的Bean就会停止对剩余PropertyPlaceholderConfigurer的扫描(Spring 3.1已经使用PropertySourcesPlaceholderConfigurer替代PropertyPlaceholderConfigurer了),所以根据加载的顺序,配置的第二个property-placeholder就被没有被spring加载,所以在使用@Value注入的时候占位符就解析不了
3、解决方法:
把freemarker.properties中的数据加入到db.properties
最后
以上就是虚幻冷风为你收集整理的@Value(“${path}“) ,Could not resolve placeholder ‘path‘ in value “${path}“的全部内容,希望文章能够帮你解决@Value(“${path}“) ,Could not resolve placeholder ‘path‘ in value “${path}“所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复