Issue 5497: Support the use of tags in the delegated Spring Kotlin generator. (#5499)

Co-authored-by: Jim Schubert <james.schubert@gmail.com>
This commit is contained in:
dumitru-petrusca
2020-06-08 01:24:20 +02:00
committed by GitHub
parent 7baa72eefa
commit 057c4294de
14 changed files with 71 additions and 11 deletions

View File

@@ -1 +1 @@
4.3.1-SNAPSHOT
4.3.1-SNAPSHOT

View File

@@ -39,7 +39,7 @@ import kotlin.collections.Map
@RestController
@Validated
@Api(value = "Pet", description = "The Pet API")
@Api(value = "pet", description = "The pet API")
@RequestMapping("\${api.base-path:/v2}")
class PetApiController(@Autowired(required = true) val service: PetApiService) {

View File

@@ -38,7 +38,7 @@ import kotlin.collections.Map
@RestController
@Validated
@Api(value = "Store", description = "The Store API")
@Api(value = "store", description = "The store API")
@RequestMapping("\${api.base-path:/v2}")
class StoreApiController(@Autowired(required = true) val service: StoreApiService) {

View File

@@ -38,7 +38,7 @@ import kotlin.collections.Map
@RestController
@Validated
@Api(value = "User", description = "The User API")
@Api(value = "user", description = "The user API")
@RequestMapping("\${api.base-path:/v2}")
class UserApiController(@Autowired(required = true) val service: UserApiService) {