admin管理员组文章数量:1344225
How do I get the ServletRequest
instance in my action?
I implemented ServletRequestAware
but I am not able to get request object in the action.
struts.xml
<package name="default" extends="struts-default,json-default">
<action name="Cart"
class="struts.cart.action.CartAction">
<interceptor-ref name="json">
<param name="contentType">application/json</param>
</interceptor-ref>
<result type="json"/>
</action>
</package>
I am making call using Ajax/JavaScript:
req.onreadystatechange = onReadyState;
req.open(POST, Cart.action, false);
req.setRequestHeader("Content-Type", "application/json; charset=utf-8");
req.send(JSONstr);
JSON object:
var data = { cartItem: {
modelNo: $('#modelNo').val(),
description: $('#description').val(),
price: $('#price').val(),
action: $('#action').val(),
quantity: $('#quantity').val()
}};
JSONstr = JSON.stringify(data);
Action:
public class CartAction extends ActionSupport implements ServletRequestAware {
private HttpServletRequest request;
private Map cartItem = new HashMap();
public String execute() throws Exception {
System.out.println("request " + cartItem); // getting here cartitem
System.out.println("request " + request); // request null
}
public void setServletRequest(HttpServletRequest httpServletRequest) {
this.request = httpServletRequest;
}
public Map getCartItem() {
return cartItem;
}
public void setCartItem(Map cartItem) {
this.cartItem = cartItem;
}
}
How do I get the ServletRequest
instance in my action?
I implemented ServletRequestAware
but I am not able to get request object in the action.
struts.xml
<package name="default" extends="struts-default,json-default">
<action name="Cart"
class="struts.cart.action.CartAction">
<interceptor-ref name="json">
<param name="contentType">application/json</param>
</interceptor-ref>
<result type="json"/>
</action>
</package>
I am making call using Ajax/JavaScript:
req.onreadystatechange = onReadyState;
req.open(POST, Cart.action, false);
req.setRequestHeader("Content-Type", "application/json; charset=utf-8");
req.send(JSONstr);
JSON object:
var data = { cartItem: {
modelNo: $('#modelNo').val(),
description: $('#description').val(),
price: $('#price').val(),
action: $('#action').val(),
quantity: $('#quantity').val()
}};
JSONstr = JSON.stringify(data);
Action:
public class CartAction extends ActionSupport implements ServletRequestAware {
private HttpServletRequest request;
private Map cartItem = new HashMap();
public String execute() throws Exception {
System.out.println("request " + cartItem); // getting here cartitem
System.out.println("request " + request); // request null
}
public void setServletRequest(HttpServletRequest httpServletRequest) {
this.request = httpServletRequest;
}
public Map getCartItem() {
return cartItem;
}
public void setCartItem(Map cartItem) {
this.cartItem = cartItem;
}
}
Share
Improve this question
edited Jan 17, 2014 at 21:41
Jaak Kütt
2,6564 gold badges33 silver badges40 bronze badges
asked Feb 26, 2013 at 15:16
ved prakashved prakash
1241 gold badge3 silver badges10 bronze badges
0
3 Answers
Reset to default 6try this
HttpServletRequest request = ServletActionContext.getRequest() ;
- Why do you need the servlet request? It's rare it's required.
- The reason ServletRequestAware isn't working is because you removed the interceptor that sets it into the action:
<action name="Cart" class="struts.cart.action.CartAction">
<interceptor-ref name="json">
<param name="contentType">application/json</param>
</interceptor-ref>
<result type="json"/>
</action>
When you set any interceptors in an action's configuration you must set all interceptors.
Here you've removed all the default interceptors, including "servletConfig" which sets the request for ServletRequestAware
actions, and are running only the json
interceptor.
You can use AjaxActionSupport instead ActionSupport in this way..
public class TestAjaxAction extends AJAXActionSupport {
//inside this you have perform method where you can get easily both object.
public void perform(HttpServletRequest request, HttpServletResponse response) throws AJAXActionException {
本文标签: javaStruts2 How do i get ServletRequest instance in ActionSupportStack Overflow
版权声明:本文标题:java - Struts2: How do i get ServletRequest instance in ActionSupport - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743731232a2529217.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论