3. 创建maven项目生成的web.xml文件里面有标红

2022-10-26 15:54:56 浏览数 (1)

创建maven项目生成的web.xml文件里面会有标红,这其实不太会影响程序的整体运行,但是能改一下当然是最好的

标红的情况是这样:

将以下代码复制到这里,就不会有标红的现象了

代码语言:javascript复制
<?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_3_1.xsd"
         version="3.1"
         metadata-complete="true">

  <servlet>
    <servlet-name>java0328_hello</servlet-name>
    <servlet-class>HelloServlet</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>java0328_hello</servlet-name>
    <url-pattern>/java0328-hello</url-pattern>
  </servlet-mapping>

</web-app>

0 人点赞