例如,我在UserController.groovy
中有以下代码:
/**
* Retrieves all users from the database.
*
* @return A list of all users from the database.
*/
@GetMapping
@ApiOperation(value = 'Retrieves all users from the database.')
ResponseEntity<List<UserEntity>> get() {
ResponseEntity.ok().body(userService.getAllUsers())
}
...当由Gradle的groovydoc
任务生成时,产生这个:
但是,我希望groovydoc
任务能够解析方法注释并将其显示为Spring's API docs:
有没有办法配置groovydoc
Gradle任务来执行此操作,还是需要使用其他库或工具?