springmvc中使用@ResponseBody注解出现No converter found for return value of type

使用@ResponseBody是将数据以json格式输出,springmvc官方是推荐使用jackson

加入以下依赖就好了

    
        com.fasterxml.jackson.core
        jackson-core
        2.8.9
    
    
        com.fasterxml.jackson.core
        jackson-databind
        2.8.9
    
    
        com.fasterxml.jackson.core
        jackson-annotations
        2.8.9
    

这样在浏览器中可以看到返回的字符串

你可能感兴趣的:(springmvc中使用@ResponseBody注解出现No converter found for return value of type)