Spring JUnit ClassPathResource FileNotFoundException

时间:2015-11-02 08:41:18

标签: java spring maven junit filenotfoundexception

我正在春天迈出第一步。在我的项目中,我需要使用SOAP HTTPS Web服务。我添加了JKSKeyManager bean来测试带有证书的config xml和ClassPathResource bean。但是当我运行JUnit测试时,我得到了

  

java.io.FileNotFoundException:类路径资源[src / main / resources / cacerts]无法解析为URL,因为它不存在

但文件肯定在该目录中。

以下是我的配置xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">`
<bean id="cucmsql" class="com.myname.myproject.CUCMDatabaseConnector" factory-method="getInstance">
    <property name="marshaller" ref="marshaller"></property>
    <property name="unmarshaller" ref="marshaller"></property>
    <property name="properties" ref="properties"/>
</bean>
<bean id="properties" class="com.myname.myproject.SystemProperties" factory-method="getInstance">
</bean>
<bean id="marshaller" class="org.springframework.oxm.jaxb.Jaxb2Marshaller">
    <property name="contextPath" value="com.cisco.axl" />
 </bean>
 <bean id="cacertsFile" class="org.springframework.core.io.ClassPathResource">
    <constructor-arg value="src/main/resources/cacerts"/>
 </bean>
 <util:property-path id="cacertsUtil" path="cacertsFile.file"/>`
 <bean id="keyManager" class="org.springframework.security.saml.key.JKSKeyManager">
    <constructor-arg ref="cacertsUtil"></constructor-arg>
    <constructor-arg>
        <map>
            <entry key="cucmpublisher" value="changeit"></entry>
            <entry key="cucmsubcriber" value="changeit"></entry>
        </map>
    </constructor-arg>
    <constructor-arg type="java.lang.String" value="changeit"></constructor-arg>
 </bean>
</beans>

我做错了什么?

1 个答案:

答案 0 :(得分:1)

根据您的项目结构判断,您可能正在使用Maven,这意味着src/main/resources是源文件夹。

因此,您需要将配置更改为:

<bean id="cacertsFile" class="org.springframework.core.io.ClassPathResource">
    <constructor-arg value="/cacerts" />
</bean>

类路径资源的路径不是相对于项目根目录而是相对于项目源文件夹。