Prelogin filter before j_security_check

折月煮酒 提交于 2019-12-02 06:41:43

You wont be able to intercept j_security_check from Serverside. Filters and all will be called only after j_security_check passed , if your resource is secured.

I had similar case , I changed the way my application was making calls. First make a http request to do j_security_check and then use same client instance to do rest of the work.

The bottom line is that , j_security_check is the first thing happens are server. So you wont be able to intercept it from Serverside.

Thanks
J

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!