添加 swagger 配置
@EnableSwagger2 @Configuration public class SwaggerConfig { @Bean public Docket createApiDocket() { Docket docket = new Docket(DocumentationType.SWAGGER_2) // 自定义API 基本信息 .apiInfo(this.defaultInfo()) // 开启一个端点 .select() // 开启API 生成路径 .apis(RequestHandlerSelectors.basePackage("项目controller层的地址")) // 选择生成路径 .paths(PathSelectors.any()) .build(); return docket; } public ApiInfo defaultInfo() { return new ApiInfoBuilder() .title("版本名字") .description("版本简介") .version("版本号") .contact(new Contact("博客名", "博客地址", "邮箱地址")) .build(); } }
添加一个启动 main() 方法
@SpringBootApplication @MapperScan("地址.mapper") public class XiuErApplication { public static void main(String[] args) { SpringApplication.run(XiuErApplication.class,args); } }
Swagger 测试接口地址
http://localhost:端口号/swagger-ui.html
或 http://127.0.0.1:端口号/swagger-ui.html
端口号一般为8080