maven+springmvc中配置返回json格式数据

1、在pom中引入jackson依赖

 
    com.fasterxml.jackson.core
    jackson-databind
    2.9.6
 

2、springmvc中配置handlerAdapter和数据转换器


xmlns:p="http://www.springframework.org/schema/p"



  
    
      
        
        
      
    
  

3、在controller中使用注解

    @RequestMapping("addRole")
    @ResponseBody //使用这个注解表示返回json数据
    public Map addRole(Role item){
        Integer insert = roleService.insert(item);
        return CommonResult.result(insert==1?"true":"false");
    }

 

你可能感兴趣的:(仅仅是记录)