*的 -servlet.xml后缀
<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd">
<context:property-placeholder location="classpath*:spring.properties" />
<context:component-scan base-package="com.my.path" />
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
com.my.path.MyController
@Controller
public class MyController {
@Value("${my.property}")
private String myProperty;
@RequestMapping("/my/path")
public String default(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse)
throws Exception {
// Any reference to myProperty above is null...
return "view";
}
}
我的servlet上下文中有ID定义的其他bean,它使用我试图通过Value注释添加到控制器的相同系统属性。我知道他们在场并且拥有正确的价值观。所以我不确定为什么我不能让注释工作。
答案 0 :(得分:0)
看看this answer。你碰巧有更多的XML Spring上下文吗? component-scan
是否与property-placeholder
在同一个Spring配置中定义,如上所示?
答案 1 :(得分:0)
在回顾了几天我可以做的每一个教程之后,我意识到这必须是某种类加载器问题。所以我回顾了我的包装结构,它是一个包含WAR的EAR。果然我有两个相同版本的spring bean jar,一个在EAR / lib中,另一个在WAR / WEB-INF / lib中。显然,这些属性是在EAR中获得的,但后期处理是在WAR(或类似的东西)中发生的。因此,通过对其进行排序,并从WAR中获取重复的JAR,它现在已经修复。