JSP页面中使用${pageContext.request.contextPath},出现乱码,404问题
作者:互联网
解决方案
- 在JSP页面的头部信息 添加 一个配置 isELIgnored=“false”,该方法只能作用在当前jsp文件上,如果需要设置更多页面支持EL表达式,需要每个页面添加isELIgnored="false"属性值。
<%@ page contentType=“text/html;charset=UTF-8” language=“java” isELIgnored=“false”%>
- 修改web.xml文件中的配置,改为2.4版本及其以上
标签:isELIgnored,false,contextPath,request,乱码,添加,JSP,页面 来源: https://blog.csdn.net/qq_41413743/article/details/121028638