What is the purpose of this endpoint?
@GetMapping("api/v1/domain/resource/{id}")
public Pojo getPojo(@PathVariable("id") String id) {
return testService.getPojo(id);
}
What is the purpose of this endpoint?
@GetMapping("api/v1/domain/resource/{id}")
public Pojo getPojo(@PathVariable("id") String id) {
return testService.getPojo(id);
}