org.springframework.beans.factory.BeanInitializationException:无法加载属性

时间:2014-03-19 19:37:36

标签: java eclipse spring maven spring-mvc

当我尝试使用eclipse运行我的应用程序时,我收到此错误。

 org.springframework.beans.factory.BeanInitializationException: Could not load properties

这是我在spring-servlet.xml

中的配置
 <context:property-placeholder location="classpath:application.properties" />

我的项目文件夹结构是

src
 --main
   -- java
application.properties

Webcontent
--WEB-INF
  --jsp
  --lib

我使用POM.xml

构建此项目

war文件在目标文件夹

中创建

如果您需要更多信息,请与我们联系。

1 个答案:

答案 0 :(得分:2)

该文件看起来不像是添加到WAR的任何地方。将它放在src/main/resources下,这是非源代码资源的传统Maven位置。