7.0 releases
This commit is contained in:
parent
31f495c9d5
commit
1c7554b62b
|
@ -61,7 +61,7 @@ pipeline {
|
|||
label 'Worker&&Containers'
|
||||
}
|
||||
tools {
|
||||
jdk 'OpenJDK 11 Latest'
|
||||
jdk 'OpenJDK 17 Latest'
|
||||
}
|
||||
options {
|
||||
buildDiscarder logRotator(daysToKeepStr: '30', numToKeepStr: '10')
|
||||
|
|
|
@ -234,9 +234,6 @@ public class AnnotationMetadataSourceProcessorImpl implements MetadataSourceProc
|
|||
if ( clazz.hasDirectAnnotationUsage( Entity.class ) ) {
|
||||
throw new MappingException( "Only classes (not interfaces) may be mapped as @Entity : " + clazz.getName() );
|
||||
}
|
||||
// if ( clazz.hasDirectAnnotationUsage( MappedSuperclass.class ) ) {
|
||||
// throw new MappingException( "Only classes (not interfaces) may be mapped as @MappedSuperclass : " + clazz.getName() );
|
||||
// }
|
||||
}
|
||||
if ( clazz.hasDirectAnnotationUsage( MappedSuperclass.class ) ) {
|
||||
if ( debug ) {
|
||||
|
|
|
@ -182,7 +182,7 @@ must be explicitly set to true.
|
|||
[[hbm-transform]]
|
||||
== hbm.xml Transformation
|
||||
|
||||
Previous versions of Hibernate performed transformations of `hbm.xml` files (with `` enabled)
|
||||
Previous versions of Hibernate performed transformations of `hbm.xml` files (with `hibernate.transform_hbm_xml.enabled=true`)
|
||||
one file at a time. This is now done across the entire set of `hbm.xml` files at once.
|
||||
While most users will never see this change, it might impact integrations which tie-in to
|
||||
XML processing.
|
||||
|
|
Loading…
Reference in New Issue