"cvc-complex-type.2.4.a: Invalid content was found starting with element 'init-param'. One of '{"http://java.sun.com/xml/ns/javaee":run-as, "http://java.sun.com/ xml/ns/javaee":security-role-ref}' is

阅读更多

项目使用的是Spring MVC,之前使用的 web.xml 使用的是2.4版本的,今天把它升级至2.5版本,但是升级之后,spring mvc 的 servlet 的声明报错了:


    apps
    org.springframework.web.servlet.DispatcherServlet
    5
    
        contextConfigLocation
        classpath:resources/applicationContext.xml
    

报的错如下:

cvc-complex-type.2.4.a: Invalid content was found starting with element 'init-param'. One of '{"http://java.sun.com/xml/ns/javaee":run-as, "http://java.sun.com/
 xml/ns/javaee":security-role-ref}' is expected.

这个问题怎么解决呢?其实很简单,只要将“5”调个位置就好了,见下面:


    apps
    org.springframework.web.servlet.DispatcherServlet
    
        contextConfigLocation
        classpath:resources/applicationContext.xml
    
    5

 

你可能感兴趣的:(web.xml,2.4,2.5,spring,mvc)