Skip to content

Commit

Permalink
Merge branch 'main' into infinspan-14.0.13.Final
Browse files Browse the repository at this point in the history
  • Loading branch information
karesti authored Aug 10, 2023
2 parents c8b0444 + ec69508 commit 38dc697
Showing 1 changed file with 8 additions and 1 deletion.
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

0 comments on commit 38dc697

Please sign in to comment.