IDEA中${pageContext.request.contextPath}无效
Posted earthchinagl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA中${pageContext.request.contextPath}无效相关的知识,希望对你有一定的参考价值。
解决1: 在jsp页面添加如下内容
<%@page isELIgnored="false"%>
解决2: 修改IDEA默认生成的web.xml文件,如下:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
</web-app>
以上是关于IDEA中${pageContext.request.contextPath}无效的主要内容,如果未能解决你的问题,请参考以下文章