mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-28 12:30:54 +00:00
* Fix multi-part binary array strings Multi-part binary array strings as outlined in #3139 resulted in `MultipartFile` rather than `List<MultipartFile>`. This PR attempts to resolve this by adjusting the templates. Two tests have been added: one for `spring-boot` and one for `spring-cloud`. Resolve #3139 * Fix multipart file name and description * Handle array of MultipartFile for delegate * Update samples due to file description being picked up * Upload result of bin/spring-stubs
OpenAPI generated API stub
Spring Framework stub
Overview
This code was generated by the OpenAPI Generator project. By using the OpenAPI-Spec, you can easily generate an API stub. This is an example of building API stub interfaces in Java using the Spring framework.
The stubs generated can be used in your existing Spring-MVC or Spring-Boot application to create controller endpoints
by adding @Controller
classes that implement the interface. Eg:
@Controller
public class PetController implements PetApi {
// implement all PetApi methods
}
You can also use the interface to create Spring-Cloud Feign clients.Eg:
@FeignClient(name="pet", url="http://petstore.swagger.io/v2")
public interface PetClient extends PetApi {
}