${pageContext.request.contextPath}
通过 ${pageContext.request.contextPath}可在JSP 中取得当前的项目绝对路径,比如当前项目是 http://localhost:8080/demo,则 ${pageContext.request.contextPath} 代表的就是 /demo,其中 / 代表 http://localhost:8080,所以一般使用${pageContext.request.contextPath} 定位资源。
JSP中 isELIgnored 属性
isELIgnored 属性表示是否忽略 EL 表达式,如果值为 true,那么 JSP 中的 EL 表达式被当成字符串处理。比如下面这个表达式 ${2000 / 20},在 isELIgnored=“true” 时输出为字符串 ${2000 / 20},当 isELIgnored=“false” 时输出为 100。
问题原因
Maven 项目默认使用 web-app 2.3 版本(各版本 web-app 标签),据说是为了扩展性,到了 web-app 2.5 才默认支持 EL 表达式,于是导致使用${pageContext.request.contextPath} 无效。
解决方案
1.JSP 中添加属性 isELIgnored=“false”
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false" %>
2.使用web-app 4.0 版本
<?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>