当我尝试使用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文件在目标文件夹
中创建如果您需要更多信息,请与我们联系。
答案 0 :(得分:2)
该文件看起来不像是添加到WAR的任何地方。将它放在src/main/resources
下,这是非源代码资源的传统Maven位置。