SpringMvc返回给前端数据@ResponseBody响应体【支持Ajax】
阅读原文时间:2023年07月10日阅读:2

1)、在Controller中写

//@ResponseBody响应体是jackson包提供的

用于将Controller的方法返回的对象,通过HttpMessageConverter接口转换为指定格式的数据如:json,xml等,通过Response响应给客户端

写在上方

@ResponseBody
@RequestMapping("/getallajax")
public Collection ajaxGetAll(){
Collection all = employeeDao.getAll();
return all;
}

返回数据all就是json就ok;

2)、在页面中写,$.ajax();




Insert title here
<% pageContext.setAttribute("ctp", request.getContextPath()); %>


<%=new Date() %>
ajax获取所有员工