SpringBoot2.7.5项目怎么配置Swagger2.9.2
时间: 2023-05-20 20:04:35 浏览: 387
您可以按照以下步骤配置SpringBoot2.7.5项目的Swagger2.9.2:
1. 在pom.xml文件中添加Swagger2的依赖:
```
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency>
```
2. 创建Swagger2的配置类,例如:
```
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.basePackage("com.example.demo"))
.paths(PathSelectors.any())
.build();
}
}
```
3. 在应用程序的启动类上添加@EnableSwagger2注解,例如:
```
@SpringBootApplication
@EnableSwagger2
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
```
4. 启动应用程序并访问http://localhost:8080/swagger-ui.html,您应该能够看到Swagger UI界面。
希望这可以帮助您配置SpringBoot2.7.5项目的Swagger2.9.2。
阅读全文