ruoyi swagger
时间: 2023-11-16 11:54:17 浏览: 273
swagger-ui
5星 · 资源好评率100%
"ruoyi swagger" 不是一个完整的问题,但我猜您想问的是如何在 Ruoyi 框架中使用 Swagger。Swagger 是一个 API 文档生成工具,可以帮助开发者快速生成 API 文档并进行测试。
在 Ruoyi 框架中,您可以通过以下步骤使用 Swagger:
1. 在 pom.xml 文件中添加 Swagger 依赖:
```xml
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency>
```
2. 创建 Swagger 配置类 SwaggerConfig.java:
```java
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket createRestApi() {
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(apiInfo())
.select()
.apis(RequestHandlerSelectors.basePackage("com.ruoyi.project"))
.paths(PathSelectors.any())
.build();
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("Ruoyi API 文档")
.description("Ruoyi API 文档")
.termsOfServiceUrl("http://localhost:8080/")
.version("1.0")
.build();
}
}
```
3. 启动应用程序,访问 http://localhost:8080/swagger-ui.html 即可查看生成的 API 文档。
阅读全文