gpt4 book ai didi

servlets - web.xml 验证错误

转载 作者:行者123 更新时间:2023-12-02 22:16:48 24 4
gpt4 key购买 nike

我的 web xml 中又出现一个错误

-Cannot resolve the name 'javaee:web-appType' to a(n) 'type definition' component.

和 web.xml 文件

<?xml version="1.0" encoding="UTF-8"?><!--error here-->
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"

最佳答案

您忘记了 xmlns:web 命名空间。这是完整的 Servlet 3.0 兼容声明。

<?xml version="1.0" encoding="UTF-8"?>
<web-app
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="Your_Webapp_ID" version="3.0">

<!-- Config here -->

</web-app>

关于servlets - web.xml 验证错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5196877/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com