複合オブジェクトのリストを含む複合オブジェクトをマップしようとしています。
しかし、マッピング後 (エラーなし)、この複雑なオブジェクトのリストは空です。
おそらく、注釈などを追加する必要がありますか、アイデアや提案はありますか?
@RequestMapping(value = "/newTrip", method = RequestMethod.POST)
@ResponseBody
public Trip create(@Valid Trip trip,
BindingResult bindingResult, Model uiModel, HttpServletRequest httpServletRequest) {
if (bindingResult.hasErrors()) {
populateEditForm(uiModel, trip);
return null;
}
if(trip.getWaypoints() == null || trip.getWaypoints().isEmpty()){
throw new IllegalArgumentException();
}
return TripBL.createTrip(trip);
}