我想做一个控制器来接受多部分以及表格数据。
我是否必须接受DTO中的所有数据,还是必须分别接受多部分?
eval.parent(quote(…))
答案 0 :(得分:0)
尝试使用@JsonUnwrapped
和@JsonProperty
。例如:
public class EmbeddedData {
@JsonProperty("ApplicableFrom")
Date applicableFrom;
@JsonProperty("ApplicableTo")
Date applicableTo;
@JsonProperty("File")
Object file;
.....
}
public class Data {
Boolean isTRCAvailable;
@JsonUnwrapped(prefix = "trc")
EmbeddedData trc;
Boolean isTenFAvailable;
@JsonUnwrapped(prefix = "tenF")
EmbeddedData tenF;
Boolean weatherPEInIndia;
@JsonUnwrapped(prefix = "wpe")
EmbeddedData wpe;
.....
}