我正在做一个简单的春季项目;实际上尝试通过属性文件进行注入。我必须在我的applicationContext.xml文件中获取prop文件,它们不在同一目录下:


  /src |_.com.luv2code.springdemo | |_sport.properties |_resources |_applicationContext.xml


尝试使用此方法,但找不到正确的类路径

<context:property-placeholder location="classpath:/sport.properties"/>

最佳答案

它应该是src/main/com.luv2code…,而不仅仅是src/com.luv2code…
斜线表示类路径根,但是您的资源似乎位于com.luv2code.springdemo包中。
sport.properties放在资源目录:src/main/resources中。

07-28 06:09