spring mvc全局变量

在页面上用application就可以
添加值 application.setAttribute("username", "zs");
取出值 ${applicationScope.username }"

在页面中则用:
<c:set var="basePath" value="${pageContext.request.contextPath }" />
<a href="${basePath }">返回首页</a>

你可能感兴趣的:(spring mvc)