使用spring security时需要配置默认的登陆页面,就是在session失效或者其它原因需要登陆时的页面。
<http auto-config='true'>
<intercept-url pattern="/login.jsp*" filters="none"/>
<intercept-url pattern="/**" access="ROLE_USER" />
<form-login login-page='/login.jsp'/>
</http>
当使用类似于jquery layout页面框架时就会用登陆页面只显示在页面中某一个部分。
例如:整个页面用/startIndex.do加载mylayout.jsp, mylayout.jsp中分为上,左(menu),下,右(content),当session失效时,点击左的菜单,右面就会显示login.jsp. 这样是不合理的,
我一开始的解决方式,是自己写了filter ,但无论是自己写新的filter或才重写spring security的filter,始终首先显示是spring默认的页面。
其实只需要在login.jsp里加上js跳转就可以,其中两个地方需要注意:
1. 在login.jsp里直接写js它在session失效时不执行,可以使用jquery中执行:如
$(document).ready(function () {
var url = window.parent.document.URL;
if (url.indexOf("core") != -1) {//只有当在maylayout页面才reload
window.location.reload("${pageContext.request.contextPath}/login.jsp");
}
})
2. 因为你点击右面菜单时session失败,跳转到登陆页面,当你再次登陆后页面还会回到你点击的地址,这样会有问题,有个技巧就是可以把reload写成整个页面用/startIndex.do,如:
$(document).ready(function () {
var url = window.parent.document.URL;
if (url.indexOf("core") != -1) {//只有当在maylayout页面才reload
window.location.reload("${pageContext.request.contextPath}/startIndex.do");
}
})
分享到:
相关推荐
标题中的"20190527_settings_deault.zip"是一个特定日期命名的压缩文件,这通常意味着它包含了在2019年5月27日时的某个配置状态。这个压缩包与PyCharm相关,PyCharm是一款由JetBrains开发的Python集成开发环境(IDE...
在字符串比较时,使用equalsIgnoreCase()方法可以避免大小写问题。 10. 避免不必要的包装对象创建 在编程中,需要避免不必要的包装对象创建。例如,intCurPage = Integer.valueOf(curPage).intValue();应该改为...
特征点击通过deault贡献为这个回购加上星号建议功能,模块或帮助发展克隆此仓库创建WPF类库项目参考商队实现ICoreModule 文件夹“模块”中的模块将被自动检测并在应用程序中运行将dll和其他文件打包为.zip 创建任务...
修正: 修复了IDA等待框和主窗口冻结/停顿/挂断问题。 等待框用作主窗口的直接子级; 避免在选择/切换默认窗口时看到奇怪的单独窗口。 工作的“取消”按钮可立即响应用户输入。 启用关闭的“ X”按钮,作为备用的...
安装 yarn add react-app-rewire-less-with-modules -D ...与antd一起使用,自定义deault主题,modifyVars覆盖默认值。 const { injectBabelPlugin } = require('react-app-rewired') const rewireLessWi
水印 这是一个使用DWT和SVD进行盲水印的项目。 如何使用? from watermarking import watermarking watermarking = watermarking ()... 可以用参数watermark_path替换deault watermark_path watermarking.watermark
, deault : T) -> T for example : let int = format ( " 1 " , default : 6 ) ==> 1 let int = format ( nil , default : 6 ) ==> 6 let int = format ( nil ) ==> 0 安装 可通过获得 。 要安装它,只需将以下行...