Код: Выделить всё
@RestController
@RequestMapping(
value = "/api/Test",
produces = "application/json"
)
public class MyController {
@RequestMapping(method = RequestMethod.POST)
public Response serviceRequest(@Valid @RequestBody ServiceRequest myServiceRequest) {
....
}
}
Код: Выделить всё
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
public class ServiceRequest {
@NotBlank
private LocalDate fromDate;
@NotBlank
private LocalDate toDate;
}
Как лучше всего это заархивировать?
Подробнее здесь: https://stackoverflow.com/questions/626 ... validation
Мобильная версия