搭建springboot之后怎么集成swagger
时间: 2023-03-05 07:37:06 浏览: 159
SpringBoot集成Swagger3(powernode document)源代码
5星 · 资源好评率100%
集成Swagger 可以帮助开发者在开发过程中更加方便地管理和测试 API 接口,以下是在 Spring Boot 中集成 Swagger 的步骤:
1. 在 pom.xml 中添加 Swagger 依赖:
```
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency>
```
2. 添加 Swagger 配置类,例如:
```
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.any())
.paths(PathSelectors.any())
.build();
}
}
```
3. 在启动类中添加 Swagger 的注解 `@EnableSwagger2`,例如:
```
@SpringBootApplication
@EnableSwagger2
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
```
4. 在浏览器中访问 http://localhost:port/swagger-ui.html 就可以看到 Swagger 页面了,其中 `port` 是应用程序的端口号。
阅读全文