1. 程式人生 > >spring mvc session過期跳轉到登入頁面方法

spring mvc session過期跳轉到登入頁面方法

在頁面上新增以下語句

<script>

<c:if test="${currentAccount == null}">
window.location.href = path+"/index/login";
</c:if>

</script>

本人遇到的坑:

一開始使用的方法是:

<c:if test="${currentAccount == null}">
<%response.sendRedirect(path+"/index/login");%>
</c:if>

但是跳轉的登入頁面是巢狀到框架右邊的內容欄,並不是想要的