Spring Bootの最新バージョンを使用して、Restful Web Serviceを介してサンプルJSONを読み込みます...
これが私のpom.xmlです。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.Apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.Apache.org/POM/4.0.0
http://maven.Apache.org/maven-v4_0_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework</groupId>
<artifactId>myservice</artifactId>
<version>0.1.0</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.2.2.RELEASE</version>
</parent>
<properties>
<Java.version>1.7</Java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencies>
<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>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-rest-webmvc</artifactId>
</dependency>
<dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spring-releases</id>
<name>Spring Releases</name>
<url>https://repo.spring.io/libs-release</url>
</repository>
<repository>
<id>org.jboss.repository.releases</id>
<name>JBoss Maven Release Repository</name>
<url>https://repository.jboss.org/nexus/content/repositories/releases</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-releases</id>
<name>Spring Releases</name>
<url>https://repo.spring.io/libs-release</url>
</pluginRepository>
</pluginRepositories>
</project>
これが私のWebサービスコードです。
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/myservice")
public class BaseService {
@RequestMapping(value="/process", method = RequestMethod.POST)
public void process(@RequestBody String payload) throws Exception {
System.out.println(payload);
}
}
次のコマンドを使用して呼び出します。
curl -H "Accept: application/json" -H "Content-type: application/json"
-X POST -d '{"name":"value"}' http://localhost:8080/myservice/process
このエラーメッセージが表示されます。
{"timestamp":1427515733546,"status":400,
"error":"Bad Request",
"exception":
"org.springframework.http.converter.HttpMessageNotReadableException","
message":
"Could not read JSON: Can not deserialize instance of Java.lang.String
out of START_OBJECT token\n at
[Source: Java.io.PushbackInputStream@8252f; line: 1, column: 1];
nested exception is com.fasterxml.jackson.databind.JsonMappingException:
Can not deserialize instance of Java.lang.String out of START_OBJECT token\n
at [Source: Java.io.PushbackInputStream@8252f; line: 1, column: 1]",
"path":"/myservice/process"
私がやろうとしているのは、有効なJSONを(curl経由の文字列として)渡し、Stringペイロードが{"name": "value"}としてプロセスメソッドに入るかどうかを確認することだけです
何が間違っているのでしょうか?
これを読むために時間を割いていただきありがとうございます...
JSONを使用する最も簡単で便利な方法は、JSONに似たJavaクラスを使用することだと思います。 https://stackoverflow.com/a/6019761
ただし、Javaクラスを使用できない場合は、これら2つのソリューションのいずれかを使用できます。
解決策1:コントローラーからMap<String, Object>
を受け取ってそれを行うことができます:
@RequestMapping(
value = "/process",
method = RequestMethod.POST)
public void process(@RequestBody Map<String, Object> payload)
throws Exception {
System.out.println(payload);
}
リクエストを使用する:
curl -H "Accept: application/json" -H "Content-type: application/json" \
-X POST -d '{"name":"value"}' http://localhost:8080/myservice/process
解決策2:それ以外の場合、POSTペイロードをString
として取得できます:
@RequestMapping(
value = "/process",
method = RequestMethod.POST,
consumes = "text/plain")
public void process(@RequestBody String payload) throws Exception {
System.out.println(payload);
}
次に、必要に応じて文字列を解析します。コントローラーでconsumes = "text/plain"
を指定する必要があることに注意してください。この場合、Content-type: text/plain
を使用してリクエストを変更する必要があります。
curl -H "Accept: application/json" -H "Content-type: text/plain" -X POST \
-d '{"name":"value"}' http://localhost:8080/myservice/process
たとえば、JSONの配列を渡す場合、Andreaのソリューションに追加するには
[
{"name":"value"},
{"name":"value2"}
]
次に、Spring Boot Controllerを次のように設定する必要があります。
@RequestMapping(
value = "/process",
method = RequestMethod.POST)
public void process(@RequestBody Map<String, Object>[] payload)
throws Exception {
System.out.println(payload);
}
問題は、無効なJSONの場合に典型的な、リクエスト本文からのJSONの解析で発生します。 Windowsでcurlを使用している場合は、-d "{"name":"value"}"
または-d "{"""name""":"value"""}"
のようにjsonをエスケープしてみてください
一方、content-typeヘッダーは省略できます。この場合、whetewerが送信されると、String引数に変換されます
マップの配列をさらに処理するには、以下が役立ちます。
@RequestMapping(value = "/process", method = RequestMethod.POST, headers = "Accept=application/json")
public void setLead(@RequestBody Collection<? extends Map<String, Object>> payload) throws Exception {
List<Map<String,Object>> maps = new ArrayList<Map<String,Object>>();
maps.addAll(payload);
}