intellij idea默认创建的web.xml

intellij idea默认创建的web.xml版本为2.3版本,对应的jstl是1.1版本,

最好替换为3.1版本的web.xml,对应的jstl是1.2版本是1.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_3_1.xsd"
         version="3.1">


</web-app>

猜你喜欢

转载自blog.csdn.net/qq_39717535/article/details/80956504