web.xml中报红解决方案

web.xml 的 标签,不知道动了什么之后就会莫名其妙的报红色,也不影响使用。 但身为处女座的男人怎么能容忍!!!

解决方案1: 严格按照 "(icon?,display-name?,description?,distributable?,context-param*,filter*,filter-mapping*,listener*,servlet*,servlet-mapping*,session-config?,mime-mapping*,welcome-file-list?,error-page*,taglib*,resource-env-ref*,resource-ref*,security-constraint*,login-config?,security-role*,env-entry*,ejb-ref*,ejb-local-ref*)"

这个顺序,也就是把欢迎页放在filter和servlet的下面。 如果没效果,就看下面

解决方案2:把开头的“ "http://java.sun.com/dtd/web-app_2_3.dtd"> ”这一段去掉。原因是:这部分代码符合xml文档规范,但不符合web-app_2_3.dtd所定义的规范。

web.xml中报红解决方案_第1张图片

删除之后:

web.xml中报红解决方案_第2张图片

如果还没有解决,把你的解决方案留言给我,我再补上,共同进步。

你可能感兴趣的:(Java)