如何知道 Struts 2 操作中的 HTTP 请求是 GET 还是 POST?

发布于 2024-09-03 15:32:48 字数 48 浏览 3 评论 0原文

有没有办法在 Struts2 操作的方法中知道这是 GET 还是 POST 请求?

Is there a way to know in Struts2 action's method if this is GET or POST request?

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

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

发布评论

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

评论(4

九八野马 2024-09-10 15:32:48

您的操作应该实现org.apache.struts2.interceptor.ServletRequestAware,因此您的操作类应该具有类似的内容

private HttpServletRequest httpRequest;
// ...
public void setServletRequest(HttpServletRequest request) {    
  this.httpRequest = request;
 }

然后只需执行以下操作:

 String method = httpRequest.getMethod() ;

Your action should implent org.apache.struts2.interceptor.ServletRequestAware, so your action class should have something like

private HttpServletRequest httpRequest;
// ...
public void setServletRequest(HttpServletRequest request) {    
  this.httpRequest = request;
 }

Then just do:

 String method = httpRequest.getMethod() ;
绿光 2024-09-10 15:32:48

您可以使用 HTTPServletRequest.getMethod() 来查找并在操作中进行相应处理。

You can use HTTPServletRequest.getMethod() to find out that and handle accordingly in action.

獨角戲 2024-09-10 15:32:48

HTTPServletRequest.getMethod()

HTTPServletRequest.getMethod()

羁拥 2024-09-10 15:32:48

如果您不想为此实现 ServletRequestAware,您可以使用 1 行获取该方法:

String method = ServletActionContext.getRequest().getMethod();

If you don't want to implement ServletRequestAware just for this, you can get the method with 1 line:

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