Код: Выделить всё
@RestController
@RequestMapping("foo/{fooId}/bar")
public class FooController {
public void prefetchFoo(@PathVariable Long fooId) {
...
}
@PostMapping("/")
public ResponseEntity createFooBar(FooEntity prefetchedFoo) {
...
}
@GetMapping("/{barId}")
public ResponseEntity getFooBar(FooEntity prefetchedFoo) {
...
}
}
Подробнее здесь: https://stackoverflow.com/questions/788 ... controller
Мобильная версия