我在配置自己第一个struts2的时候,是在myeclipse8.6中创建了一个新的Web Project,然后WebRoot/WEB-INF下的web.xml是自动生成的,xml头文件信息为:
当我把配置struts2的代码填进去之后,竟然报错:
1.struts2代码:
我的第一个struts2程序 >struts2 org.apache.struts2.dispatcher.FilterDispatcher struts2 /*
2.报错:
Multiple annotations found at this line: - cvc-complex-type.2.3: Element 'web-app' cannot have character [children], because the type's content type is element-only.
后来发现,并不是struts2配置代码有问题,而是xml头文件中,第三行有问题:
xmlns="http://java.sun.com/xml/ns/javaee"
可能是一直用j2ee习惯?反正改成j2ee之后就好了。