I'm using the last (and only)
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
with spring boot
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
I would like to have ability to upload file and model in one controller, so I created one:
in this case on swagger-ui I see only file uploading without model:
I tried this case in postman and it works fine
Is it a bug? Or should I add some other annotations to make it work?