<sec:authorize ifAnyGranted="<%=dRoles%>">
<meta http-equiv="REFRESH" content="0;url=public/First.jsp">
</sec:authorize>
<sec:authorize ifAnyGranted="<%=aRoles%>">
<meta http-equiv="REFRESH" content="0;url=public/Second.jsp">
</sec:authorize>
<sec:authorize ifAnyGranted="<%=bRoles%>">
<meta http-equiv="REFRESH" content="0;url=public/Third.jsp">
</sec:authorize>
我正在使用弹簧安全。登录成功后,将加载 Startup.jsp ( default-target-url="/Startup.jsp )。我的 Startup.jsp 中有上述代码。我正在使用 spring 安全标签。考虑用户可以访问以上 3 个 jsps .问题是,在IE7中,加载了First.jsp,但在其他浏览器中加载了Third.jsp。如何在两个浏览器中显示相同的jsp?
谢谢!