${pageContext.request.contextPath}无法解析

Posted wolf-sun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了${pageContext.request.contextPath}无法解析相关的知识,希望对你有一定的参考价值。

摘要

突然出现无法解析${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}无法解析的主要内容,如果未能解决你的问题,请参考以下文章