|
@@ -31,7 +31,7 @@ public class Swagger2Config {
|
|
|
return new Docket(DocumentationType.SWAGGER_2)
|
|
|
.apiInfo(apiInfo())
|
|
|
.select()
|
|
|
- .apis(RequestHandlerSelectors.basePackage("com.hwrj.cloud.admin.controller"))
|
|
|
+ .apis(RequestHandlerSelectors.basePackage("com.hcloud.microserver.h5.controller.web"))
|
|
|
.paths(PathSelectors.any())
|
|
|
.build()
|
|
|
.securitySchemes(securitySchemes())
|
|
@@ -40,10 +40,10 @@ public class Swagger2Config {
|
|
|
|
|
|
private ApiInfo apiInfo() {
|
|
|
return new ApiInfoBuilder()
|
|
|
- .title("mall后台系统")
|
|
|
- .description("mall后台模块")
|
|
|
- .contact(new Contact("macro","",""))
|
|
|
- .version("1.0")
|
|
|
+ .title("微信app后台接口")
|
|
|
+ .description("carbon-h5")
|
|
|
+ .contact(new Contact("carbon","",""))
|
|
|
+ .version("0.0.1")
|
|
|
.build();
|
|
|
}
|
|
|
|