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">
我能做什么?
解决方法:
@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文件.
标签:junit,spring,web-xml 来源: https://codeday.me/bug/20190630/1337354.html