找不到properties

来源:4-6 Spring Bean装配之基于Java的容器注解说明——@ImportResource和@Value

未卜先知

2017-01-07 15:35

Could not load properties; nested exception is java.io.FileNotFoundException: class path resource [src/main/resources/jdbc.properties] cannot be opened because it does not exist

properties和xml都放在源文件(main/java目录下)的resources目录下了

能读到xml

信息: Loading XML bean definitions from class path resource [spring-annotation.xml]
一月 07, 2017 3:29:50 下午 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
信息: Loading XML bean definitions from class path resource [spring-resource.xml]
一月 07, 2017 3:29:50 下午 org.springframework.core.io.support.PropertiesLoaderSupport loadProperties
信息: Loading properties file from class path resource [src/main/resources/jdbc.properties]

但是后面就报错了。。。找不到这个文件

test类的classpath:spring-annotation.xml我是放在test目录下的resources目录下

上面两个在源文件下

测试类读取的xml在测试类自己的resources下

两个是分开的,我以为都是classpath。。。结果是不行的

写回答 关注

1回答

  • 东东_wzd
    2017-01-07 20:13:29

    src/main/resources/jdbc.properties改成:jdbc.properties

    总体上可以这么写:classpath:jdbc.properties

    未卜先知

    我是配置文件就按classpath:jdbc.properties写的,但是读取文件的时候找不到 @ImportResource("classpath:spring-resource.xml") <context:property-placeholder location="classpath:jdbc.properties"/> 我把文件都放到test的resources下就好了(classpath:spring-annotation.xml我原来是放test下的) 上面两个我放源文件下了,结果这样不行

    2017-01-07 20:54:09

    共 1 条回复 >

Spring入门篇

为您带来IOC和AOP的基本概念及用法,为后续高级课程学习打下基础

268785 学习 · 963 问题

查看课程

相似问题