All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.kongchen.swagger.docgen.EnhancedSwaggerModule Maven / Gradle / Ivy

Go to download

A maven build plugin which helps you generate API document during build phase

There is a newer version: 3.1.8
Show newest version
package com.github.kongchen.swagger.docgen;

import com.fasterxml.jackson.databind.module.SimpleModule;

public class EnhancedSwaggerModule extends SimpleModule {
    private static final long serialVersionUID = 1L;

    public EnhancedSwaggerModule() {
        super("1.0.0");
    }

    @Override
    public void setupModule(SetupContext context) {
        super.setupModule(context);
        context.insertAnnotationIntrospector(new EnhancedSwaggerAnnotationIntrospector());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy