spring踩坑

Posted yuanpx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring踩坑相关的知识,希望对你有一定的参考价值。

 

org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.IllegalArgumentException: No converter found for return value of type

错误原因及解决步骤

  1.原因:这是因为springmvc默认是没有对象转换成json的转换器的,需要手动添加jackson依赖。

  2.解决步骤:

    手动添加jackson依赖到pom.xml文件中

    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-core</artifactId>
      <version>${jackson.version}</version>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>${jackson.version}</version>
    </dependency>

以上是关于spring踩坑的主要内容,如果未能解决你的问题,请参考以下文章

踩坑记:根据类型获取Spring容器中的Bean

踩坑记:根据类型获取Spring容器中的Bean

2018-5-25-踩坑

Spring 的 BeanUtils 踩坑记,你是不是遇到过这些问题?

Spring 的 BeanUtils 踩坑记,你是不是遇到过这些问题?

Spring boot redis自增编号控制 踩坑