Код: Выделить всё
@RequestMapping(value = "/example/{id}", method = RequestMethod.PUT)
public ResponseEntity update(@RequestHeader(value="last-modified-date") String lastModDate, HttpServletRequest request,
@RequestBody ReBody rebody, @PathVariable("id") int id) throws Exception{
// Stuff here...
}
Я хотел бы выполнить специальную проверку атрибута заголовка, т.е.
Код: Выделить всё
if (lastModDate == null) {
throw Exception();
}
Подробнее здесь: https://stackoverflow.com/questions/500 ... pring-boot
Мобильная версия