Json-Spring :No converter found for return value of typeNo converter found for return value of type: class java.util.HashMap

最近配置新的Spring-SpringMvc-MyBatis项目时,测试从controller到数据库都是成功的,唯独回传到页面的时候

报错

提示

No converter found for return value of type: class java.util.HashMap

原因是没有注册JSon转换,@ResponseBody时无法根据转换器进行转换

只要在applicationContext.xml中配置一下即可


    
        
            
            
        
    

  
      
          
                 
          
      
  

  
       
            
              
               
               
               
              
              
               
               
               
              
              
               
               
               
              
               
               
               
               
              
            
      
   

需要jackson的jar包

maven依赖如下
可以配置在pom.xml中,也可以在中心仓库下载手动导入


    com.fasterxml.jackson.core
    jackson-databind
    2.7.4


    com.fasterxml.jackson.core
    jackson-core
    2.7.4


    com.fasterxml.jackson.core
    jackson-annotations
    2.7.4

你可能感兴趣的:(Json-Spring :No converter found for return value of typeNo converter found for return value of type: class java.util.HashMap)