如何在 Struts 2.2.1 中获取 Servlet Request 属性?

发布于 2024-10-07 18:30:57 字数 421 浏览 0 评论 0原文

我正在阅读一些教程,其中在调用任何操作之前,有一个过滤器将 ServletRequest 中的属性设置为 Connection。

public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) {
     Connection connection = new ConnectionFactory().getConnection();
     request.setAttribute("connection", connection);
     chain.doFilter(request, response);
     connection.close();
}

但是我仍然没有找到在我的操作中获取该属性的方法。我怎样才能得到它?

I'm reading some tutorial where before invocating any action there is a filter that sets an attribute in the ServletRequest as Connection.

public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) {
     Connection connection = new ConnectionFactory().getConnection();
     request.setAttribute("connection", connection);
     chain.doFilter(request, response);
     connection.close();
}

However I still didn't find a way to get the attribute in my Action. How can I get it?

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

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

发布评论

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

评论(1

葬花如无物 2024-10-14 18:30:57
Map parameters = ActionContext.getContext().getParameters();

另一种选择是您的操作类实现 ServletRequestAware。在该方法的实现中,您只需将请求分配给实例字段即可。

Map parameters = ActionContext.getContext().getParameters();

Another option is that your action class implements ServletRequestAware. In the implementation of the method you simply assign the request to an instance field.

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