|
@@ -0,0 +1,53 @@
|
|
|
+package com.bofeng.config;
|
|
|
+
|
|
|
+import com.google.common.base.Predicate;
|
|
|
+import com.google.common.base.Predicates;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.springframework.context.annotation.Bean;
|
|
|
+import org.springframework.context.annotation.Configuration;
|
|
|
+import springfox.documentation.RequestHandler;
|
|
|
+import springfox.documentation.builders.ApiInfoBuilder;
|
|
|
+import springfox.documentation.builders.PathSelectors;
|
|
|
+import springfox.documentation.service.ApiInfo;
|
|
|
+import springfox.documentation.spi.DocumentationType;
|
|
|
+import springfox.documentation.spring.web.plugins.Docket;
|
|
|
+import springfox.documentation.swagger2.annotations.EnableSwagger2;
|
|
|
+
|
|
|
+import static springfox.documentation.builders.RequestHandlerSelectors.withMethodAnnotation;
|
|
|
+
|
|
|
+@Configuration
|
|
|
+@EnableSwagger2
|
|
|
+public class SwaggerConfig {
|
|
|
+
|
|
|
+ // @EnableSwagger2 开启Swagger2
|
|
|
+ @Bean
|
|
|
+ public Docket createRestApi() {
|
|
|
+ return new Docket(DocumentationType.SWAGGER_2)
|
|
|
+ .apiInfo(apiInfo())
|
|
|
+ .forCodeGeneration(true)
|
|
|
+ .useDefaultResponseMessages(false)
|
|
|
+ .select()
|
|
|
+ .apis(apis())
|
|
|
+ .build()
|
|
|
+ .useDefaultResponseMessages(false);
|
|
|
+ }
|
|
|
+
|
|
|
+ private Predicate<RequestHandler> apis() {
|
|
|
+ return Predicates.and(withMethodAnnotation(ApiOperation.class));
|
|
|
+ }
|
|
|
+
|
|
|
+ private Predicate<String> paths() {
|
|
|
+ return Predicates.and(
|
|
|
+ PathSelectors.regex("/.*"),
|
|
|
+ Predicates.not(PathSelectors.regex("/error"))
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ private ApiInfo apiInfo() {
|
|
|
+ return new ApiInfoBuilder()
|
|
|
+ .build();
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|