我是第一次学习AxBoot。但是,我们不了解在Code中使用Responses.ListResponse的位置。
@RequestMapping(method = RequestMethod.GET, produces = APPLICATION_JSON)
public Responses.ListResponse list(RequestParams<User> requestParams) {
List<User> users = userService.get(requestParams);
return Responses.ListResponse.of(users);
}
它是对象类型吗?
Of在Responses.ListResponse.Of中是什么意思?帮我...
最佳答案
您可以使用代码搜索工具(源图)检查类定义。
仅供参考:https://sourcegraph.com/github.com/axboot/ax-boot-framework/-/blob/ax-boot-core/src/main/java/com/chequer/axboot/core/api/response/Responses.java?utm_source=share#L25
还有更多“ Response.ListResponse.of”用法,请检查lombok RequiredArgsConstructor。
关于java - 什么是Response.ListResponse?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58742238/