I would like to have an Action
class which should accept a JSON string constructed from user interface with no setter and getter in the Action
clas
Post them as content with type "application/json"
. You may do it with a simple jquery ajax call where you could specify the content-type
and dataType
.
$.ajax({
type: "POST",
url: "/the/action/url",
data : {},
dataType:"JSON",
contentType: "application/json; charset=utf-8"
});
Add json plugin to the project dependencies with json-lib-2.3-jdk15.jar
. The plugin supplied with the interceptor json that reads and populates an action from the request. If you don't want to populate the action then you should not use this interceptor. Instead manually parse the request with this or any other third party library to get the JSONObject. Or you could rewrite the interceptor and comment that code that is using JSONPopulator but deserialize the object with JSONUtil.
Also, you might find this examples useful when manually creating/parsing JSON data.
If you want to send JSON object with multiple key-value pair in it and you want to get these key-values in your action class without creating any setters/getters,
In the Action class decleration, we should implement ServletRequestAware and we should override the setServletRequest() method and set the HttpServletRequest attribute
public class YourClass extends ActionSupport implements ServletRequestAware
private HttpServletRequest request;
@Override
public void setServletRequest(HttpServletRequest request) {
this.request = request;
}
public HttpServletRequest getServletRequest() {
return this.request;
}
And in our targeted function, we should use above request object to get the parameter (by its name as it is set in the json as the key):
public String fetchData() {
String key1Data = getServletRequest().getParameter("key1");
String key2Data = getServletRequest().getParameter("key2");
return SUCCESS;
}
Where your JSON object should have data something like:
var jsonData = {"key1": "Hello", "key2":"There"};