web-dev-qa-db-ja.com

SpringはPOJOではなくLinkedHashMapに逆シリアル化しようとします

SpringBootとWeb依存関係を持つ単純なRESTコントローラーを作成しています。 JSON本体を3つのフィールドしかないテストPOJOに逆シリアル化しようとしていますが、POSTリクエストを実行しようとすると、サーバーは500エラーで応答し、エラーが発生しますコンソールは次のとおりです。

.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

私が書いたコードはすべて次のとおりです。

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:

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

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と本文のみを使用して、PostmanでPOSTリクエストを作成しています:

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

SpringがLinkedHashMapからPOJOに変換できない理由がわかりません。どんな助けでもいただければ幸いです。

編集:

私のpom.xmlは次のとおりです。

<?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>
12
mac

問題を分析したところ、この問題が発生する可能性があるケースがいくつか見つかりました。それらは以下に与えられます:

  1. 内部クラス

クラスTestEntityがエンドポイントの内部クラスの場合。 TestEntity内部クラスから別のクラスに転送してコードを実行するだけで、機能します。

  1. サポート内部クラス

内部クラスをRequestBodyでサポートしたい場合は、TestEntityクラスをstaticとして作成すると、問題が解決します。

  1. Springの依存関係の構成

それでも問題が解決しない場合は、pom.xmlへの依存関係を確認してください。適切な方法への依存関係を追加していない可能性があります。このためにあなたは見ることができます この答え 。または、pom.xmlファイルにjacksonを明示的に追加することもできます。

依存関係は

<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>

これがあなたの問題を解決することを願っています:)

それでも問題が解決しない場合は、YouTubeビデオまたはブログサイトを確認するか、githubからオープンソースプロジェクトをダウンロードしてください。

ありがとう:)

関連リンク: Spring @Requestbodyが内部クラスにマッピングされていません

4

メソッドがJSONを使用するように指定してみてください。注釈を変更します。
@RequestMapping(value = "/poster", method = RequestMethod.POST)

@PostMapping(value = "/poster",
            consumes = MediaType.APPLICATION_JSON_UTF8_VALUE,
            produces = MediaType.TEXT_HTML)

ここで指定する主要な部分は、入力がJSONであることを期待することです。どのタイプを返すかはわかりませんが、適切なタイプを指定するか、「プロデュース」部分を削除できます。主な部分は、入力が何であるかを指定することです

2
Michael Gantman

理想的にはこのコードは機能するはずですが、pom.xmlに以下の依存関係を追加して試してみてください

<dependency>
   <groupId>com.fasterxml.jackson.core</groupId>
   <artifactId>jackson-databind</artifactId>
   <version>2.5.0</version>
</dependency>
0
Alien