どうすれば複数の豆を私の@RestControllerにマップできますか?Spring @RestControllerで複数のBeanをマッピングする方法は?
Iは、ばねウェブ4.3.8.RELEASE.jarを使用してい
私が試したすべてのもの:@RequestParam @RequestBody、@RequestAttribute、@RequestPartが、何もうまくいかない...
package com.example.demo;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class RestService {
@RequestMapping(value = "demo", method = RequestMethod.POST, consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE)
public Object[] demo(Foo foo, Bar bar) {
return new Object[]{foo, bar};
}
public static class Bar {
public Long id;
public String bar;
}
public static class Foo {
public Long id;
public String foo;
}
}
マイ(符号化)ペイロードがある:
foo=%7B%22id%22%3A123%2C%22foo%22%3A%22foo1%22%7D&bar=%7B%22id%22%3A456%2C%22bar%22%3A%22bar1%22%7D
デコードペイロード:
のfoo={"id":123,"foo":"foo1"}&bar={"id":456,"bar":"bar1"}
リクエストヘッダ:
Content-Type: application/x-www-form-urlencoded
上記のコードでは、それが返されます。
[{"id":null,"foo":null},{"id":null,"bar":null}]
しかし、私が欲しいのです:
[{"id":123,"foo":"foo1"},{"id":456,"bar":"bar1"}]
おかげ
可能な複製:https://stackoverflow.com/questions/20622359/automatic-conversion-of-json-form-parameter-in-spring-mvc-4-0 – chuckskull
@Freddy Boucher私の編集を確認してください。 –