swagger实现排序功能

1、之前使用的swagge版本,进行排序的时候发现,排序已经被废弃


        
            io.springfox
            springfox-swagger2
            2.9.2
        

        
        
            io.springfox
            springfox-swagger-ui
            2.8.0
        

2、需要重新引入新的ui进行排序


        
            io.springfox
            springfox-swagger2
            2.9.2
        

        
        
            com.github.xiaoymin
            swagger-bootstrap-ui
            1.9.6
        

3、在你的接口上面怎么加这个

@ApiSort(value = 5)   //给接口排序
@ApiOperationSupport(order = 1) //给接口里面的方法排序

@ApiSort(value = 1)
public class ADSchoolController {
   
    @GetMapping("/aaaa")
    @ApiOperationSupport(order = 2)     //排序
    public void getAdSchoolListWithPage(@RequestParam(value = "token", defaultValue = "") String token) {
        
    }
    @GetMapping("/bbbb")
    @ApiOperationSupport(order = 1)     //排序
    public void getAdSchoolListWithPage(@RequestParam(value = "token", defaultValue = "") String token) {
        
    }
}

4、找到的swaggerconfig文件、增加红色这个

import com.github.xiaoymin.swaggerbootstrapui.annotations.EnableSwaggerBootstrapUI;

@Configuration
@EnableSwagger2
@ConditionalOnProperty(name = "spring.profiles.active", havingValue = "dev")
@EnableSwaggerBootstrapUI

public class Swagger2Config {
    @Bean
    public Docket createRestApi() {
        return new Docket(DocumentationType.SWAGGER_2).apiInfo(apiInfo()).select()
                .apis(RequestHandlerSelectors.basePackage("com.cuiyanet.business")).paths(PathSelectors.any()).build();
    }

}

5、之后访问 http://127.0.0.1/doc.html 路径

swagger实现排序功能_第1张图片

swagger实现排序功能_第2张图片

6、刷新界面,你就发现你的接口已经排序成功了

7、还有一个加强版的,只需要引入下面这一个包,第4步添加的注解变成,@EnableKnife4j,排序解决


        
            com.github.xiaoymin
            knife4j-spring-boot-starter
            2.0.2
        

 

 

你可能感兴趣的:(java)