forked from linlinjava/litemall
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
56fefae
commit 0408b7f
Showing
3 changed files
with
62 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/config/WxSwagger2Configuration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package org.linlinjava.litemall.wx.config; | ||
|
||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import springfox.documentation.builders.ApiInfoBuilder; | ||
import springfox.documentation.builders.PathSelectors; | ||
import springfox.documentation.builders.RequestHandlerSelectors; | ||
import springfox.documentation.service.ApiInfo; | ||
import springfox.documentation.spi.DocumentationType; | ||
import springfox.documentation.spring.web.plugins.Docket; | ||
import springfox.documentation.swagger2.annotations.EnableSwagger2; | ||
|
||
/** | ||
* swagger在线文档配置<br> | ||
* 项目启动后可通过地址:http://host:ip/swagger-ui.html 查看在线文档 | ||
* | ||
* @author enilu | ||
* @version 2018-07-24 | ||
*/ | ||
|
||
@Configuration | ||
@EnableSwagger2 | ||
public class WxSwagger2Configuration { | ||
@Bean | ||
public Docket wxDocket() { | ||
|
||
return new Docket(DocumentationType.SWAGGER_2) | ||
.groupName("wx") | ||
.apiInfo(wxApiInfo()) | ||
.select() | ||
.apis(RequestHandlerSelectors.basePackage("org.linlinjava.litemall.wx.web")) | ||
.paths(PathSelectors.any()) | ||
.build(); | ||
} | ||
|
||
private ApiInfo wxApiInfo() { | ||
return new ApiInfoBuilder() | ||
.title("litemall-wx API") | ||
.description("litemall小商场API") | ||
.termsOfServiceUrl("https://github.com/linlinjava/litemall") | ||
.contact("https://github.com/linlinjava/litemall") | ||
.version("1.0") | ||
.build(); | ||
} | ||
} |