springboot+jersey+swagger에서 발생한 문제

2654 단어
환경:
springboot:2.0.6  jersey:2.26  swagger:1.5.9
 
jersey에서 swagger 설정을 불러오고 jerseyConfig에 다음 코드를 직접 추가합니다
    @PostConstruct
    public void init() {
        this.configureSwagger();
    }

    private void configureSwagger() {
        this.register(ApiListingResource.class);
        this.register(SwaggerSerializers.class);
        this.register(AcceptHeaderApiListingResource.class);

        BeanConfig config = new BeanConfig();
        config.setTitle("Title");
        config.setVersion("v1");
        config.setContact("");
        config.setSchemes(new String[] { "http", "https" });
        config.setBasePath("jersey path");
        config.setResourcePackage("com.your.swagger.package");
        config.setPrettyPrint(true);
        config.setScan(true);
    }

 
문제1: swagger가api를 생성할 때 클래스의 모든 방법을 폭로하지만 어떤 방법은 드러내고 싶지 않아요. Spring 버전에 ApiIgnore라는 게 있어요.
주석은 사용할 수 있지만,jersey 버전에서는 제공하지 않습니다.어쩔 수 없습니다. config에서 어떤 방법을 제공했는지 살펴보면 setFilterClass가 있습니다. 이름을 보면 제가 원하는 물건입니다. 아까 jerseyConfig에 이 설정을 추가하면 됩니다.
config.setFilterClass("YourFilter");//  SwaggerSpecFilter

필터에서 원하는 필터 논리를 실현할 수 있습니다.코드는 다음과 같습니다.
public class YourFilter implements SwaggerSpecFilter {
    @Override
    public boolean isOperationAllowed(Operation operation, ApiDescription apiDescription, Map> map, Map map1, Map> map2) {
        //do whatever you want
    }

    @Override
    public boolean isParamAllowed(Parameter parameter, Operation operation, ApiDescription apiDescription, Map> map, Map map1, Map> map2) {
        return true;
    }

    @Override
    public boolean isPropertyAllowed(Model model, Property property, String s, Map> map, Map map1, Map> map2) {
        return true;
    }
}

 
질문 2: API가 여러 개인 경우 정렬하려고 합니다.인터넷에서 주는 방법은 모두 프론트 데스크톱에 논리를 붙이는 것이다. 그러나 나의 프론트 데스크톱 코드와 일치하지 않는다. 그리고 내가 다운로드한 JS 파일은 모두min.js와 같은 것이다. 전체 JS 파일은 한 줄이고 대응하는 JS를 찾는 것도 귀찮다. 그래서 직접 백엔드 debug 추적 코드를 보고 내가 원하는 논리에 가입할 수 있는 방법이 있는지 보자.swagger가 스캔을 끝낸 후에 Reader Listener를 실행하는 것을 발견했습니다. 이 이벤트에 자신의 각종 논리를 추가할 수 있습니다.이런 간단하고 거친 걸 좋아해!코드는 다음과 같습니다.
public class YourController implements ReaderListener{
    @Override
    public void afterScan(Reader reader, Swagger swagger) {
        //do whatever you want
    }
}

좋은 웹페이지 즐겨찾기