Bootstrap

JSON返回数据的几种方式

Java开发难免要使用JSON传递数据,下面是我总结的几种回调方式。

推荐文章:JSON、JSONObject、JSONArray、Map之间的关系

方式一、返回Map集合

//返回Map集合
@RequestMapping("/findStudent")
@ResponseBody
public Map<String, Object> findStudent(MultipartFile file) {
   

    Student student = new Student();
    student.setUsername("木心");
    student.setPassword("123456");

    Map map = 
;