- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在将 springfox swagger-ui 与 Springboot 一起使用,但未为分段上传启用 fileUpload 按钮。我尝试升级到 springfox-swagger-ui 3.0.0 但这甚至没有打开 swagger-ui 页面。有没有办法获得文件上传按钮?
我的 API 调用如下所示:
@RequestMapping(value = "/foo", method = RequestMethod.POST, consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
public ResponseEntity<ByteArrayResource> method(@RequestParam("file") MultipartFile file, @RequestParam("id") String id) {
....
My pom.xml is :
<properties>
<java.version>1.8</java.version>
<io.springfox.version>3.0.0</io.springfox.version>
</properties>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>${io.springfox.version}</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.10.5</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-data-rest</artifactId>
<version>${io.springfox.version}</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>${io.springfox.version}</version>
</dependency>
最佳答案
来自:http://springfox.github.io/springfox/docs/current/#migrating-from-existing-2-x-version
有一些事情需要做:
1. 将 springfox-boot-starter 添加到 POM 中,从 POM 中删除旧的依赖项: springfox-swagger2 和 springfox-swagger-ui
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
@Configuration
// remove @EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2).select()
.apis(RequestHandlerSelectors.basePackage(UserManagementImpl.class.getPackage().getName()))
.paths(PathSelectors.any()).build();
}
}
@ApiOperation(value = "files", notes = "upload user emails from CSV and email content from json and send out")
@PostMapping(path = "/users/uploadUserEmailsAndSend", consumes = { "multipart/form-data" })
@ResponseBody
ResponseEntity<UploadUsersResDTO> uploadUserEmailsAndSend(@RequestPart("files") MultipartFile[] filesUpload){
CSVParser csvParser = null;
BufferedReader fileEmailsReader = null;
BufferedReader fileEmailMessageReader = null;
MultipartFile fileCSV = null;
MultipartFile fileJson = null;
try {
if (filesUpload[0].getOriginalFilename().toLowerCase().endsWith("csv")) {
fileCSV = filesUpload[0];
fileJson = filesUpload[1];
} else {
fileCSV = filesUpload[1];
fileJson = filesUpload[0];
}
// more codes ....
}
关于swagger-ui - Springfox swagger-ui 3.0.0 不会调出swagger-ui.html页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63275134/
我正在使用 springfox 的招摇实现。我想修改 swagger-ui.html 以采用自定义 header 值。如何修改此文件?或者告诉spring fox使用备用文件? 最佳答案 从 gith
我有 spring-mvc 应用程序,我已经嵌入了 RestAPI。一切正常,我的 rest api 映射到 /rest/* url。当我添加 SwaggerConfig 它已经开始识别我的 Cont
我必须从 swagger 上传 MultipartFile 类型的多个文件来测试我的 api。 postman 确实允许上传,但是,同样的事情在 swagger 中不起作用。 多部分文件列表的代码:
我正在使用 SpringFox (Swagger)记录我的 REST API。 Swagger 的一大优点是显示示例模型和数据类型格式。 现在,我将我的 API 配置为以毫秒为单位生成和使用日期,但是
在 Springfox 3.0 中,springfox.documentation.service.Parameter已弃用。 是否有提供参数及其构建器的更新方法? 以及如何提供其default值(v
有没有办法在 springfox swagger (2.7.0) 中公开继承/多态性?我知道 swagger 规范支持 allOf。 springfox支持这个吗?以下是示例域模型。 @ApiMode
在我的 spring boot rest API 中,我为每个端点的每个响应(与方法无关)发回一个唯一的请求 id header “x-request-id”。我可以使用这样的东西添加它: @ApiR
在我的 Spring Boot Rest api 中,我有以下类: @Entity @Table(name="Items") @JsonPropertyOrder({ "itemId", "descr
目前使用 springfox 2.9.2 Swagger 记录在 Spring 中创建的 API。 我想在文档中添加示例响应,就像这张图片一样; 我的理解是我可以做类似的事情: @ApiRespons
我正在使用 Springfox-swagger 为我的 Spring Boot REST 服务生成一个 Swagger 页面。作为我序列化为 JSON 的 POJO 之一的一部分,我使用: javax
我有一个简单的 Spring Boot 应用程序,它有一个 REST 端点来返回一个“Job”对象,该对象包含一系列多态性,旁边还有其他内容。我们采用“代码优先”方法并尝试创建 API 模型来满足我们
这是我第一次来这里。因此,我们在 Spring MVC 中构建了一个应用程序,使用 2 个 Java 类作为 Controller 来处理 REST 调用。其中一个用 @Controller 显式注释
我想添加一个自定义 Controller 来 swagger API 描述符。 使用 spring fox 可以很容易地自定义现有模型。 但是我没有成功地从头开始将自定义 API 添加到 swagge
我正在尝试使用 swagger-codegen 和 springfox 在 Web 服务开发过程中赢得时间。 我遇到了为带注释的接口(interface)类以及 Controller 实现创建端点的问
我将 SpringFox 库用于我的 spring boot 应用程序的其余文档。当我点击 model 时,所有元素都作为可选元素返回。有没有办法将必需的元素显示为强制性的?是否需要添加任何其他配置?
@RequestMapping(...) public Foo getFoo(@HeaderParam("header") final String header) { ... } 像上面那样
GitHub:https://github.com/springfox/springfox 文档:http://springfox.io 在说swagger-bootstrap-ui的代码之前,先
我有一个特定的 DTO,我正在使用它作为 Swagger 文档的示例返回。如果我有成功的 201 代码,我该如何更改示例? 招摇的示例响应: 我使用注释“@ApiModelProperty”来描述我的
我在互联网上搜索了如何自定义我的多个案卷的端点,但没有找到答案。 我的模块有几个 API。我想在不同的端点上生成 Swagger 文档,每个端点都位于其相应 API 的根目录上。例如 : 本地主机:8
想知道如何在 POST 中隐藏 Swagger 中的模型属性。我已经尝试过 Swagger-springmvc (0.9.3) 和 Springfox(支持 swagger spec 2.0)都无济于
我是一名优秀的程序员,十分优秀!