Spring Security 与 Struts 2 - 根据用户角色重定向到不同页面
我能够从数据库对用户进行身份验证,但我的应用程序中有不同的用户,因此我想根据他们的角色将他们重定向到不同的主页。
我认为最好的方法是检查 struts 操作中的用户角色,然后重定向到适当的页面。但我该怎么做呢。 spring security是否设置存储身份验证信息的会话变量。
如果是,那么我如何在 struts 操作中访问它们。另外登录后如何获取用户名和密码
I am able to authenticate the user from the database but there are different users in my app so I want to redirect them to their different homepages based on their Role.
The best way I guess would be by checking the user role in a struts action and then redirecting to appropriate page. But how do I do that. Does spring security set session variables storing authentication information.
If yes, then how do I access them in a struts action. Also how do I access the username and password after login
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以访问 在请求处理过程中的任何地方对当前用户进行
身份验证
如下:You can access
Authentication
of the current user in any place during request processing as follows:另一种方法是通过实现您自己的 AuthenticationSuccessHandler 并将其连接到您的 Spring 配置中,在 Spring Security 本身内进行路由。
The alternative would be to do your routing within Spring Security itself by implementing your own AuthenticationSuccessHandler and wiring it into your Spring config.