Spring Security 与 Struts 2 - 根据用户角色重定向到不同页面

发布于 2024-10-18 08:24:16 字数 204 浏览 2 评论 0原文

我能够从数据库对用户进行身份验证,但我的应用程序中有不同的用户,因此我想根据他们的角色将他们重定向到不同的主页。

我认为最好的方法是检查 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟雨扶苏 2024-10-25 08:24:16

您可以访问 在请求处理过程中的任何地方对当前用户进行身份验证如下:

SecurityContextHolder.getSecuirtyContext().getAuthentication()

You can access Authentication of the current user in any place during request processing as follows:

SecurityContextHolder.getSecuirtyContext().getAuthentication()
柳若烟 2024-10-25 08:24:16

另一种方法是通过实现您自己的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文