springboot2配置swagger
程序员文章站
2022-04-27 18:44:01
...
@Configuration
@EnableSwagger2
public class Swagger2 {
@Bean
public Docket createRestApi() {
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(apiInfo())
.select()
.apis(RequestHandlerSelectors.basePackage("com.ls.demo.controller")) //指定controller的包路径
.paths(PathSelectors.any())
.build();
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("Spring Boot中使用Swagger2构建RESTful APIs")
.description("学习demo")
.termsOfServiceUrl("http://www.baidu.com/")
.contact("ls")
.version("1.0")
.build();
}
}
上一篇: Lua:编码约定