本文主要是介绍解析静态资源地址显示$%7BpageContext.request.contextPath%7D,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.问题:
${pageContext.request.contextPath}被解析成$%7BpageContext.request.contextPath%7D
Java项目中,当你在jsp中使用${pageContext.request.contextPath}来获取相对路径。但是,发布项目后,访问页面时,${pageContext.request.contextPath}被解析成$%7BpageContext.request.contextPath%7D
解决方案:查看web.xml中头文件web-app的版本,如果低于2.4,修改web-app的版本即可正常获取相对路径,页面正常显示显示。
<?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">
这篇关于解析静态资源地址显示$%7BpageContext.request.contextPath%7D的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!