我有一个Web应用程序,我使用spring MVC。我在sample.properties
文件中定义了一些常量。 spring-servlet是为我的应用程序中的所有URL初始化的servlet。弹簧的servlet:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
<context:property-placeholder location="classpath:sample.properties"/>
</beans>
在我的一个java类中,我访问其中一个属性的值:
package com.sample;
import com.google.gson.JsonArray;
import org.apache.log4j.Logger;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
@Component
public class Validator {
@Value("${credit}")
String credits;
private static final Logger LOG = Logger.getLogger(Validator.class);
public void checkRating() {
LOG.debug(credits);
}
}
sample.properties:
credit=[{"duration":15,"credit":10},{"duration":30,"credit":20}]
从控制器调用Validator时,它只在日志文件中将其记录为${credit}
。我没有得到它的价值。类似地,如果我在属性文件中放置一个整数/浮点数,我会收到一个错误,说它不能转换为整数/浮点数。我错过了任何配置吗?
答案 0 :(得分:1)
原因是因为propertyplaceholder configurer是BeanFactoryPostProcessor,它只处理在配置propertyplaceholder的上下文中定义的bean。在Web应用程序中,通常会有一个上下文的层次结构,如here所述。因此,您需要在适当的位置声明这一点。