欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决No converter found for return value of type: class java.util.ArrayList

程序员文章站 2024-01-14 13:19:04
...

问题描述

解决No converter found for return value of type: class java.util.ArrayList

出现 No converter found for return value of type: class java.util.ArrayList 这种错误

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

2.解决步骤:

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

        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-core</artifactId>
            <version>2.11.0</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>2.11.0</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
            <version>2.11.0</version>
        </dependency>

添加完依赖之后,记得在project structure中的lib中也添加相关依赖!
解决No converter found for return value of type: class java.util.ArrayList