我正在使用 Springfox V 2.9.2 并使用Spring Boot REST实现。在此示例中,我希望隐藏Controller及其所有端点,但是由于下面的代码没有被隐藏,因此被禁用了。
如何隐藏?我还使用了@Api(tags = "Cases", hidden = true)
@RestController
@RequestMapping(path = "/contact")
@Api(tags = "Conatacts")
@ApiIgnore
public class ContactController {
............
}