You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A list of exception mapper classes that should be disabled. This allows users to override the default built-in exception mappers provided by Quarkus extensions.
A list of exception mapper classes that should be disabled. This allows users to override the default built-in exception mappers provided by Quarkus extensions.
Build item that allows us to supply a custom output dir instead of defaulting to {project.target.dir}/kubernetes It's different from the `KubernetesOutputDirBuildItem` as it's used to communicate the intention to override the dir while `KubernetesOutputDirBuildItem` is used to communicate the effective output dir.
5606
+
Build item that allows us to supply a custom output dir instead of defaulting to {@code} {project.target.dir}/kubernetes}. It differs from `KubernetesOutputDirectoryBuildItem` in that it communicates intent to override the output directory while `KubernetesOutputDirectoryBuildItem` communicates the effective output directory.
Copy file name to clipboardExpand all lines: _versions/main/guides/rest.adoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1465,14 +1465,14 @@ There are situations where various Jackson related exceptions need to handled in
1465
1465
This becomes a problem when taking JAX-RS / Jakarta REST rules into account, because the exception mapper `ExceptionMapper` for `MismatchedInputException` would be used instead of the user provide
1466
1466
`ExceptionMapper` for `JsonMappingException` (as `MismatchedInputException` is a subtype of `JsonMappingException`).
1467
1467
1468
-
One solution for this case is to configure the following:
1468
+
To handle this, you can disable the built-in exception mapper:
0 commit comments