标签:web.xml 表达 .com img idea src request 分享图片 分享
突然出现无法解析${pageContext.request.contextPath}的问题,在点击<a href="${pageContext.request.contextPath}/login.jsp">登录</a> 链接的时候,被当成字符串使用了。
现象
解决办法
idea生成的web.xml 的web-app版本居然是2.3,2.3之后的版本才支持el表达式的
<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">
更换成3+版本的就可以了
${pageContext.request.contextPath}无法解析
标签:web.xml 表达 .com img idea src request 分享图片 分享
原文地址:https://www.cnblogs.com/wolf-sun/p/9157143.html