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
Copy file name to clipboardExpand all lines: extensions/hibernate-orm/runtime/src/main/java/io/quarkus/hibernate/orm/runtime/customized/BuiltinFormatMapperBehaviour.java
// Let's fail and tell the user to migrate their data to the new format and before that is done: use a delegate to org.hibernate.type.format.jaxb.JaxbXmlFormatMapper()
111
117
// using a legacy format:
112
118
if (hasXmlProperties(metadata)) {
113
-
action(puName, TYPE_XML);
119
+
action(puName, TYPE_XML,
120
+
List.of("The XML format mapper uses the legacy format. It is not compatible with the new default one."));
Copy file name to clipboardExpand all lines: extensions/hibernate-orm/runtime/src/main/java/io/quarkus/hibernate/orm/runtime/customized/JsonFormatterCustomizationCheck.java
0 commit comments