java.lang.IllegalArgumentException: No converter found for return value of type:

java.lang.IllegalArgumentException: No converter found for return value of type:

本人使用了阿里的fastson,结果出错,改成Jackson,错误解决

在pom文件中加入依赖

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

加入之后出现依赖的jar包

java.lang.IllegalArgumentException: No converter found for return value of type:

 

相关文章:

  • 2021-06-11
  • 2021-08-31
  • 2021-08-02
  • 2022-12-23
  • 2021-10-02
  • 2021-06-13
  • 2022-12-23
猜你喜欢
  • 2022-01-19
  • 2021-10-01
  • 2021-08-08
  • 2021-12-10
  • 2022-12-23
  • 2022-12-23
  • 2021-10-12
相关资源
相似解决方案