Spring尝试反序列化到LinkedHashMap而不是POJO [英] Spring tries to deserialize to LinkedHashMap instead of POJO

查看:68
本文介绍了Spring尝试反序列化到LinkedHashMap而不是POJO的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Spring Boot和Web依赖项创建一个简单的rest控制器.我正在尝试将JSON正文反序列化为仅具有3个字段的测试POJO,但是当我尝试发出POST请求时,服务器将响应500错误,并且我在控制台中看到的错误是:

I'm creating a simple rest controller with Spring Boot and the Web dependency. I'm trying to deserialize a JSON body to a test POJO with only 3 fields, but when I attempt to make a POST request, the server responds with a 500 error and the error I get in the console is:

.w.s.m.s.DefaultHandlerExceptionResolver : Failed to write HTTP message: org.springframework.http.converter.HttpMessageNotWritableException: No converter found for return value of type: class java.util.LinkedHashMap

我编写的所有代码如下:

All of the code I have written is as follows:

EmailApplication.java:

EmailApplication.java:

package com.test.email.app;

import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;

@SpringBootApplication
@ComponentScan(basePackages = { "com.test.email" })
public class EmailApplication {

    public static void main(String[] args) {
        SpringApplication.run(EmailApplication.class, args);
    }

    @Bean
    public CommandLineRunner commandLineRunner(ApplicationContext ctx) {
        return args -> {
            System.out.println("----- You're up and running with test-email-app! -----");
        };
    }
}

EmailController.java:

EmailController.java:

package com.test.email.controller;

import com.test.email.entity.TestEntity;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.RequestMapping;

import java.net.URI;

@RestController
public class EmailController {
    @RequestMapping(value = "/", method = RequestMethod.GET)
    public String index() {
        TestEntity entity = new TestEntity();
        return "test-email-app index";
    }

    @RequestMapping(value = "/poster", method = RequestMethod.POST)
    public ResponseEntity<String> poster(@RequestBody TestEntity testEntity) {
        URI location = URI.create("/poster");
        return ResponseEntity.created(location).body(testEntity.getUrl());
    }
}

TestEntity.java

TestEntity.java

package com.test.email.entity;

/**
 * An entity for serialization/deserialization testing
 */
public class TestEntity {
    public String url;
    public int count;
    public double height;

    public TestEntity() {}

    public TestEntity(String url, int count, double height) {
        this.url = url;
        this.count = count;
        this.height = height;
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public int getCount() {
        return count;
    }

    public void setCount(int count) {
        this.count = count;
    }

    public double getHeight() {
        return height;
    }

    public void setHeight(double height) {
        this.height = height;
    }
}

我仅使用标头Content-Type: application/json和正文向邮递员发出POST请求:

I'm making a POST request with Postman using only the header Content-Type: application/json and with the body:

{ "url": "http://google.com", "count": 3, "height": 2.4 }

我不知道为什么Spring无法将LinkedHashMap转换为我的POJO.任何帮助将不胜感激.

I don't know why Spring can't convert from a LinkedHashMap to my POJO. Any help would be appreciated.

我的pom.xml如下:

My pom.xml is as follows:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.test.email</groupId>
    <artifactId>test-email-app</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>test-email-app</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.3.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>


</project>

推荐答案

在分析了您的问题之后,我发现某些情况下可能会出现此问题. 那些都在下面:

After Analyzing your problem, I found some cases where this issue can arise. Those are given bellow:

  1. 内部类:

如果您的班级TestEntity是端点的内部班级. 只需将您的TestEntity内部类转移到一个单独的类中,然后运行您的代码,即可使用.

If your class TestEntity is Inner class of your endpoint. Just transfer your TestEntity from Inner class to a separate class and run your code, it will work.

  1. 支持内部课程:

如果要支持内部类RequestBody,然后将TestEntity类设置为静态,则可以解决您的问题.

If you want to support inner class a RequestBody then make TestEntity class as static, this will solve your problem.

  1. Spring依赖项配置:

如果仍然不能解决问题,请检查对pom.xml的依赖性.可能是您没有添加对正确方法的依赖.为此,您可以查看此答案.或者,您可以在pom.xml文件中显式添加jackson.

If still not solved your problem, check your dependency on pom.xml. May be you are not adding dependency on proper way. For this you can view this answer . Or you can add jackson explicitly in your pom.xml file.

依赖项:

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

希望这可以解决您的问题:)

Hope this will solve your problem :)

如果仍然不能解决问题,请查看一些youtube视频或博客网站,或从github下载一些开源项目.

If still not solved your problem, check some youtube video or some blog site or download some open-source project from github.

谢谢:)

相关链接: Spring @Requestbody没有映射到内部类

这篇关于Spring尝试反序列化到LinkedHashMap而不是POJO的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆