-
-
Notifications
You must be signed in to change notification settings - Fork 7.5k
[kotlin-spring][server] Feat: Allow implementation of arbitrary interface in DTOs (similar to x-implements from java-spring) #21950
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
wing328
merged 20 commits into
OpenAPITools:master
from
Picazsoo:feat/implement-x-implements-for-kotlin-spring
Sep 15, 2025
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
184b96b
add basic implementation and tests
Picazsoo acda457
improve test a bit
Picazsoo 1f89def
modify kotlin-spring.md
Picazsoo eb4da41
add x-kotlin-implements also to enum
Picazsoo 2cfd787
update samples & properly define implemented vendor extension
Picazsoo 1298b21
use enum.getName() instead of hardcoded string as key in vendor exten…
Picazsoo 709919e
fix docs
Picazsoo bb54fc9
fix test openapi spec and test
Picazsoo b2d9135
add samples for x-kotlin-implements
Picazsoo 6894f07
add samples for x-kotlin-implements to proper output folder
Picazsoo b0c57c8
fix
Picazsoo 325fbdd
revert unwanted changes
Picazsoo 6013278
move to correct place
Picazsoo 7c665eb
fix mustache template
Picazsoo b1141e1
add to samples-kotlin-server.yaml
Picazsoo 1ba7a4e
reuse 1 open api schema for everything. Add also case where interface…
Picazsoo 3d78287
add warn logs when x-kotlin-implements-fields is used without x-kotli…
Picazsoo fb35015
remove unnecessary generated files
Picazsoo 3086ce8
remove unnecessary generated files
Picazsoo 212d2cc
remove "status" inner enum from Pet as it fails to properly import as…
Picazsoo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| generatorName: kotlin-spring | ||
| outputDir: samples/server/petstore/kotlin-springboot-x-kotlin-implements | ||
| library: spring-boot | ||
| inputSpec: modules/openapi-generator/src/test/resources/3_0/kotlin/petstore-with-x-kotlin-implements.yaml | ||
| templateDir: modules/openapi-generator/src/main/resources/kotlin-spring | ||
| additionalProperties: | ||
| documentationProvider: none | ||
| annotationLibrary: none | ||
| useSwaggerUI: "false" | ||
| serviceImplementation: "false" | ||
| skipDefaultInterface: "true" | ||
| interfaceOnly: "true" | ||
| serializableModel: "true" | ||
| beanValidations: "true" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This misuse of comments to prevent line break might be controversial. However it seemed to improve the readability as otherwise the line would be very very long. But I can do one-liner if it is preferred to this.