Spring MVC,如何让控制器处理程序处理映射处理程序之前的所有请求?

发布于 2024-10-17 19:36:04 字数 480 浏览 3 评论 0原文

我编写了一个 Web 应用程序,其中包含勇敢的控制器和处理程序映射,所有内容都带有 Spring 3.0 和控制器注释。现在事实证明我需要简单和自定义的身份验证。我暂时不想使用ACEGI,因为我没有时间学习它。理想情况下,我希望我可以有一个例程,在每个映射处理程序之前调用,从 HttpSession 获取 userId,检查他是否已登录以及会话密钥,如果没有则重定向到登录页面。我一直在考虑拦截器...问题是您必须使用 HandlerInterceptorAdapter,它具有以下方法:

 public boolean preHandle(
            HttpServletRequest request,
            HttpServletResponse response,
            Object handler) throws Exception {

这不会让我访问与请求关联的 HttpSession。我该如何解决这个问题?

I've wrote a web app with its brave controllers and handler mapping, everything with Spring 3.0 and controller annotations. Now turns out that I need simple and custom autentication. I don't want to use ACEGI for the moment, because I've no time to learn it. I'd like ideally that I could have a routine that gets called before every mapped handler, gets from the HttpSession the userId, checks if he is logged in and the session key and if not redirects to a login page. I've been thinking about an interceptor... the problem is that you have to use HandlerInterceptorAdapter, which has the following method:

 public boolean preHandle(
            HttpServletRequest request,
            HttpServletResponse response,
            Object handler) throws Exception {

that won't let me access the HttpSession associated with the request. How do I solve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

怪我鬧 2024-10-24 19:36:05

你确定吗?您应该能够通过 request.getSession() 获取会话。

Are you sure? You should be able to obtain the session through request.getSession().

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