4 changed files with 69 additions and 2 deletions
@ -0,0 +1,38 @@ |
|||||
|
package com.xtong.zhbs.configure; |
||||
|
|
||||
|
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.spi.DocumentationType; |
||||
|
import springfox.documentation.spring.web.plugins.Docket; |
||||
|
import springfox.documentation.swagger2.annotations.EnableSwagger2WebMvc; |
||||
|
|
||||
|
/** |
||||
|
* 丝袜哥(SWAGGER) 配置 |
||||
|
*/ |
||||
|
@Configuration |
||||
|
@EnableSwagger2WebMvc |
||||
|
public class Knife4jConfiguration { |
||||
|
|
||||
|
@Bean(value = "defaultApi2") |
||||
|
public Docket defaultApi2() { |
||||
|
Docket docket = new Docket(DocumentationType.SWAGGER_2) |
||||
|
.apiInfo(new ApiInfoBuilder() |
||||
|
//.title("swagger-bootstrap-ui-demo RESTful APIs")
|
||||
|
.description("# swagger-bootstrap-ui-demo RESTful APIs") |
||||
|
.termsOfServiceUrl("http://www.xx.com/") |
||||
|
.contact("xx@qq.com") |
||||
|
.version("1.0") |
||||
|
.build()) |
||||
|
//分组名称
|
||||
|
.groupName("2.X版本") |
||||
|
.select() |
||||
|
//这里指定Controller扫描包路径
|
||||
|
.apis(RequestHandlerSelectors.basePackage("com.github.xiaoymin.knife4j.controller")) |
||||
|
.paths(PathSelectors.any()) |
||||
|
.build(); |
||||
|
return docket; |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,20 @@ |
|||||
|
package com.xtong.zhbs.controller; |
||||
|
|
||||
|
import io.swagger.annotations.Api; |
||||
|
import io.swagger.annotations.ApiImplicitParam; |
||||
|
import io.swagger.annotations.ApiOperation; |
||||
|
import org.springframework.web.bind.annotation.GetMapping; |
||||
|
import org.springframework.web.bind.annotation.RequestParam; |
||||
|
import org.springframework.web.bind.annotation.RestController; |
||||
|
|
||||
|
@Api(tags = "首页") |
||||
|
@RestController |
||||
|
public class HomeCotroller { |
||||
|
|
||||
|
@ApiImplicitParam(name = "name",value = "姓名",required = true) |
||||
|
@ApiOperation(value = "向客人问好") |
||||
|
@GetMapping("/") |
||||
|
public String home(@RequestParam(value = "name")String name){ |
||||
|
return name; |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue