${pageContext.request.contextPath}不生效的问题
想通过${pageContext.request.contextPath}
获取当前路径,然后发现这行代码被解析成了/$%7BpageContext.request.contextPath%7D
,原因是因为web-app版本号过低。IDEA在创建javaweb项目的时候,web-app的版本默认是2.3,而要正确解析上面的代码获得当前路径,我们需要把web-app的版本手动改成2.5及以上版本。
解决方法一:将的标签替换如下
<?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_4_0.xsd"
version="4.0">
</web-app>
解决方法二:在使用el表达式的jsp页面添加isELIgnored="false"
<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
解决方法三:
- File -> Project Structure
- 删除web-app,记得备份web-xml的内容
- 删除之后一定要点apply(应用)
- 再添加一个web,xml,记得点apply