Skip to content
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

Docs: Mention wilcard support in resteasy reactive XML serialisation exclude classes configuration #35302

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion docs/src/main/asciidoc/resteasy-reactive.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1508,7 +1508,14 @@ However, in some situations, these classes cause the `JAXBContext` to fail: for

[NOTE]
====
The property `quarkus.jaxb.exclude-classes` accepts a comma separated list of fully qualified class names, for example: `quarkus.jaxb.exclude-classes=org.acme.one.Model,org.acme.two.Model`.
The property `quarkus.jaxb.exclude-classes` accepts a comma separated list of either fully qualified class names
or package names. Package names must be suffixed by `.*` and all classes in the specified package and its subpackages will be excluded.

For instance, when setting `quarkus.jaxb.exclude-classes=org.acme.one.Model,org.acme.two.Model,org.acme.somemodel.*`, the following elements are excluded:

- The class `org.acme.one.Model`
- The class `org.acme.two.Model`
- All the classes in the `org.acme.somemodel` package and its subpackages
====

==== Advanced JAXB-specific features
Expand Down
Loading