public abstract class BaseController<E extends BaseEntity> {
@GetMapping("/find")
public ServerResponse find() {
return ServerResponse.success();
}
}
@RestController
@RequestMapping("/api/department")
public class DepartmentController extends BaseController<Department> {
@RequestMapping("/find2")
@ResponseBody
public ServerResponse find2() {
return ServerResponse.success();
}
}
localhost:Temp nicq$ http GET :8010/api/department/find
HTTP/1.1 200
Content-Length: 0
Date: Sat, 12 Oct 2019 12:12:13 GMT
localhost:Temp nicq$ http GET :8010/api/department/find2
HTTP/1.1 200
Content-Length: 0
Date: Sat, 12 Oct 2019 12:12:17 GMT
Я ожидаю, что в теле ответа есть строка json, но она пуста.
Когда я открываю режим отладки, базовый метод поискане выполнено.
Я реализую универсальный контроллер. <</p>