当我们使用 IDEA 帮我们创建 Web 项目时, IDEA 会帮我们生成默认的 web.xml 配置文件
可是 IDEA 生成的 web.xml 版本太老旧了,我们需要替换成比较新的
// 使用新版本的 web.xml 替换 IDEA 默认生成的老旧版本
<?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">
</web-app>