春季-java.io.FileNotFoundException

时间:2018-12-27 22:29:43

标签: java xml spring

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

  

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

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

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

1 个答案:

答案 0 :(得分:1)

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