openapi-generator/samples/server/petstore/springboot-beanvalidation
Adam Conway ff1178ad7e [Java][Spring] fix optional query params missing in generated swagger (#7607)
* Added genericModelSubstitutes if using Optional

As per https://github.com/springfox/springfox/issues/1848  Doesn't seem to fix the problem, but is what springfox recommends so might be aprt of it.

* Added config package to scans

If you have defined apiPackage and basepackage (e.g. as com.example.api) but not defined configPackage then config is still in io.swagger.config and is not included in the component scan.  This means the config is not used when generating the swagger definition from the code.  Fixed by including configPackage also in the scan.

* Ran spring-all-pestore.sh update script

* Converted tabs to spaces

* Ran spring-all-pestore.sh update script
2018-02-23 00:02:38 +08:00
..
.swagger-codegen update spring petstore samples 2018-01-29 01:38:13 +08:00
src/main [Java][Spring] fix optional query params missing in generated swagger (#7607) 2018-02-23 00:02:38 +08:00
.swagger-codegen-ignore add back petstore sample for spring boot with bean validation 2017-04-19 01:09:14 +08:00
pom.xml Fix starting springboot server from IDE (#7184) 2017-12-16 11:19:31 +08:00
README.md Adds @Valid to request body for the JavaSpring (#4850) 2017-04-13 17:42:02 +08:00

Swagger generated server

Spring Boot Server

Overview

This server was generated by the swagger-codegen project.
By using the OpenAPI-Spec, you can easily generate a server stub.
This is an example of building a swagger-enabled server in Java using the SpringBoot framework.

The underlying library integrating swagger to SpringBoot is springfox

Start your server as an simple java application

You can view the api documentation in swagger-ui by pointing to
http://localhost:8080/

Change default port value in application.properties