Junit的测试用例,如何阅读web.xml

时间:2011-09-06 00:55:22

标签: spring junit web.xml

我正在尝试在测试用例中使用web.xml。但是,我不能......

@ContextConfiguration(locations={"file:src/main/webapp/WEB-INF/web.xml", 
    "/integration/restful/*.xml"}    
public class RestfulTest {  }

错误消息:

Caused by: org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace [http://java.sun.com/xml/ns/javaee] Offending resource: URL [file:src/main/webapp/WEB-INF/web.xml]

web.xml的标题:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    id="WebApp_ID" version="2.5">

我该怎么办?

1 个答案:

答案 0 :(得分:3)

@ContextConfiguration正在寻找Spring应用程序上下文配置文件。 web.xml不是Spring配置文件,而是一个在servlet容器中配置Web应用程序的文件。

Spring应用程序上下文文件描述了Spring托管bean和依赖项。请参阅:http://static.springsource.org/spring/docs/3.1.x/spring-framework-reference/html/testing.html

您的测试失败,因为Spring正在尝试根据Spring应用程序上下文文件的模式解析web.xml文件。