使用rest,后台怎样返回json数据,struts2以上框架,用的是注解
发布网友
发布时间:2022-05-04 20:35
我来回答
共3个回答
热心网友
时间:2022-06-25 17:16
struts2中用rest后台返回json的方法是统一封装response为JSONObject即可。
举例如下:
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.opensymphony.xwork2.Action;
public class Test {
public Map responseJson;
public Map getResponseJson() {
return responseJson;
}
public void setResponseJson(Map responseJson) {
this.responseJson = responseJson;
}
public String getList(){
Map<String, Object> map = new HashMap<String, Object>();
List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
for(int i=0;i<3;i++){
Map<String, Object> m = new HashMap<String, Object>();
m.put("id", i);
m.put("name", "Mic"+i);
list.add(m);
}
map.put("rows", list);
map.put("totalCont", 3);
this.setResponseJson(map);
return Action.SUCCESS;
}
}
热心网友
时间:2022-06-25 17:16
直接使用.json作为后缀的请求都会返回json对象。默认支持的
action类如果实现ModelDriven,就会返回model对象,否则返回整个action对象追问ModelDriven 对象是什么东西 是不是这样子
private Object model;
热心网友
时间:2022-06-25 17:17
@RequestMapping(value = "/schele",
consumes="application/json",
method = RequestMethod.POST)
是这样吗追问是action有个model对象,好像是根据这个进行返回,具体又不知道怎么做。