web.xml 配置所有 JSP 文件引入 某个JSP
作者:
郎中_大橙子 | 来源:发表于
2017-08-13 22:33 被阅读9次
1、web.xml
<!-- 所有的jsp文件都会引入 /WEB-INF/jsp/system/common.jsp -->
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<include-prelude>/WEB-INF/jsp/system/common.jsp</include-prelude>
</jsp-property-group>
</jsp-config>
2、common.jsp
<%
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + request.getContextPath();
request.setAttribute("basePath", basePath);
%>
本文标题:web.xml 配置所有 JSP 文件引入 某个JSP
本文链接:https://www.haomeiwen.com/subject/rgfyrxtx.html
网友评论