We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Given the following class definition
@XmlRootElement(name = "ArrayFoo") private static class ArrayFoo { private List<SimpleFoo> fList; }
The following example should be generated:
<ArrayFoo> <flist> <SimpleFoo> <b>true</b> <s>string</s> </SimpleFoo> </flist> </ArrayFoo>
But currently the following example is generated:
<ArrayFoo> <flist> <b>true</b> <s>string</s> </flist> </ArrayFoo>
Dependencies and versions used 1.0.0 Code example If possible, an example project or snippet that reproduces the bug.
Stack trace and error logs If an exception has been thrown or an error was logged by springwolf.
The text was updated successfully, but these errors were encountered:
fix(core): generate correct xml examples for array schemas springwolf…
0ab5718
…GH-642 Co-authored-by: Timon Back <[email protected]>
fix(core): generate correct xml examples for array schemas GH-642 (#643)
19ad4aa
Co-authored-by: Timon Back <[email protected]>
Thank you for the report, the issue has been addressed in the new release.
Feel free to reopen this issue if there is still something missing.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Given the following class definition
The following example should be generated:
But currently the following example is generated:
Dependencies and versions used
1.0.0
Code example
If possible, an example project or snippet that reproduces the bug.
Stack trace and error logs
If an exception has been thrown or an error was logged by springwolf.
The text was updated successfully, but these errors were encountered: