spring的@Value(“${xxx}”)标签获取不值原样输出${}取不到值的原因?

关于@Value(“${xxx}”)取不到值的原因,首先保证spring-mvc.xml里面的配置正确

class="org.springframework.beans.factory.config.PropertiesFactoryBean">


classpath:view.properties
classpath:configfilename.properties



    
class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">


以及applicationContent.xml的配置正确,以及web.xml的正确配置....................

在保证以上的配置的正确性之后,在加上

 

该配置,则可以获取到正确配置文件.properties文件的值

你可能感兴趣的:(spring的@Value(“${xxx}”)标签获取不值原样输出${}取不到值的原因?)