我该如何调用.class或如何从以下通用类型获取类

 headerMap.put("accept", MediaType.APPLICATION_JSON_VALUE);
     ResponseEntity<PaginationResponse<Category>> response =
     restClient.getResource(url, headerMap, **PaginationResponse<Category>.class**);
     LOGGER.info("Method getAllCategories() - END");


显示错误

最佳答案

据我所知,该信息在运行时不可用。
但是也许,您可以使用Get generic type of class at runtime中的一些想法。

关于java - 从泛型类型获取类,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36008088/

10-10 21:19