1.导入jackson的jar包

SpringMVC 返回json-LMLPHP

2.在方法体上加上@ResponseBody

/**
* 得到ProType的typeId,typeName列表
* 返回json
* */
@RequestMapping("/getAllProType")
@ResponseBody
public List<Object> getAllProType() {
return adminSer.getColum("ProType", new String[] {"typeId","typeName"});
}

3.浏览器访问就可以得到json数据了

05-11 09:25