JavaWeb项目web.xml中出现Element xxx is not allowed here问题
作者:迷茫的21世纪的新轻年
这篇文章主要介绍了JavaWeb项目web.xml中出现Element xxx is not allowed here问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
一、问题
IDEA通过Maven构建的Web工程,默认web.xml的版本为2.3 ,由于版本太低,会导致web.xml在添加配置的时候出现问题。
Element xxxx is not allowed here
二、解决方案
将web.xml的版本头替换为版本更高的
1)使用tomcat的web.xml的版本头(推荐)
web.xml头与服务器的配置一样,能够尽量避免未知问题。
2)拷贝以下代码
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" version="4.0"> </web-app>
以上方法对单个项目有效,下次构建Maven项目的时候还会出现。
总结
这些仅为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。