我正在使用带有Spring-Data-Rest应用程序的swagger 2,所有来自实体的可能服务正在公开,并且其中许多不是必需的。 所以我想只公开我的实体的GET方法。 注 - - 不为实体创建控制器或服务。
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket api() {
return new
Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.any())
.paths(PathSelectors.any())
.build();
}
}