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

HHH-19209 Verify and fix ID class generation for inner classes #9819

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,8 @@ private ClassDetails idClassDetails(InheritanceState inheritanceState, ClassDeta
if ( idClassAnn == null ) {
try {
// look for an Id class generated by Hibernate Processor as an inner class of static metamodel
final String generatedIdClassName = inheritanceState.getClassDetails().getClassName() + "_$Id";
final Class<Object> javaClass = inheritanceState.getClassDetails().toJavaClass();
final String generatedIdClassName = getGeneratedClassName( javaClass ) + "$Id";
return classDetailsRegistry.resolveClassDetails( generatedIdClassName );
}
catch (RuntimeException e) {
Expand All @@ -537,6 +538,12 @@ private ClassDetails idClassDetails(InheritanceState inheritanceState, ClassDeta
}
}

private static String getGeneratedClassName(Class<?> javaClass) {
return javaClass.isMemberClass()
? getGeneratedClassName( javaClass.getEnclosingClass() ) + "$" + javaClass.getSimpleName() + "_"
: javaClass.getName() + "_";
}

private Component createMapperProperty(
Map<ClassDetails, InheritanceState> inheritanceStates,
PersistentClass persistentClass,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import org.hibernate.LazyInitializationException;
import org.hibernate.annotations.JoinColumnOrFormula;
import org.hibernate.annotations.JoinFormula;
import org.hibernate.annotations.processing.Exclude;
import org.hibernate.orm.test.jpa.BaseEntityManagerFunctionalTestCase;

import org.hibernate.testing.orm.junit.JiraKey;
Expand All @@ -29,6 +30,7 @@
import static org.junit.Assert.fail;

@JiraKey(value = "HHH-12770")
@Exclude
public class JoinFormulaManyToOneLazyFetchingTest extends BaseEntityManagerFunctionalTestCase {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import org.hibernate.annotations.JoinFormula;
import org.hibernate.annotations.NotFound;
import org.hibernate.annotations.NotFoundAction;
import org.hibernate.annotations.processing.Exclude;
import org.hibernate.boot.model.internal.ToOneBinder;
import org.hibernate.internal.CoreMessageLogger;
import org.hibernate.orm.test.jpa.BaseEntityManagerFunctionalTestCase;
Expand Down Expand Up @@ -39,6 +40,7 @@
import static org.junit.Assert.assertNull;

@JiraKey(value = "HHH-12770")
@Exclude
public class JoinFormulaManyToOneNotIgnoreLazyFetchingTest extends BaseEntityManagerFunctionalTestCase {

@Rule
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import org.hibernate.annotations.JoinFormula;
import org.hibernate.annotations.NotFound;
import org.hibernate.annotations.NotFoundAction;
import org.hibernate.annotations.processing.Exclude;
import org.hibernate.boot.model.internal.ToOneBinder;
import org.hibernate.internal.CoreMessageLogger;
import org.hibernate.orm.test.jpa.BaseEntityManagerFunctionalTestCase;
Expand Down Expand Up @@ -39,6 +40,7 @@
import static org.junit.Assert.assertNull;

@JiraKey(value = "HHH-12770")
@Exclude
public class JoinFormulaOneToOneNotIgnoreLazyFetchingTest extends BaseEntityManagerFunctionalTestCase {

@Rule
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import jakarta.persistence.ManyToOne;
import jakarta.persistence.MapsId;
import jakarta.persistence.OneToMany;
import org.hibernate.annotations.processing.Exclude;
import org.hibernate.testing.orm.junit.DomainModel;
import org.hibernate.testing.orm.junit.SessionFactory;
import org.hibernate.testing.orm.junit.SessionFactoryScope;
Expand Down Expand Up @@ -82,6 +83,7 @@ static class Loan {


@Entity(name = "Extension")
@Exclude
static class Extension {
@Id
private Long exLoanId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import jakarta.persistence.ManyToOne;

import org.hibernate.annotations.NaturalId;
import org.hibernate.annotations.processing.Exclude;
import org.hibernate.orm.test.jpa.BaseEntityManagerFunctionalTestCase;

import org.junit.Test;
Expand All @@ -22,6 +23,7 @@
/**
* @author Vlad Mihalcea
*/
@Exclude
public class CompositeIdAssociationTest extends BaseEntityManagerFunctionalTestCase {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import jakarta.persistence.ManyToOne;
import org.hibernate.Hibernate;
import org.hibernate.annotations.Struct;
import org.hibernate.annotations.processing.Exclude;
import org.hibernate.testing.jdbc.SharedDriverManagerTypeCacheClearingIntegrator;
import org.hibernate.testing.orm.junit.BootstrapServiceRegistry;
import org.hibernate.testing.orm.junit.DialectFeatureChecks;
Expand All @@ -37,6 +38,7 @@
)
@SessionFactory
@RequiresDialectFeature(feature = DialectFeatureChecks.SupportsStructAggregate.class)
@Exclude
public class StructComponentManyToOneCompositeTest {

@BeforeEach
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import jakarta.persistence.JoinColumn;
import jakarta.persistence.ManyToOne;

import org.hibernate.annotations.processing.Exclude;
import org.hibernate.testing.orm.junit.JiraKey;
import org.hibernate.testing.orm.junit.DomainModel;
import org.hibernate.testing.orm.junit.SessionFactory;
Expand All @@ -33,6 +34,7 @@
}
)
@SessionFactory
@Exclude
public class CompositeIdAssociationsWithEmbeddedCompositeIdTest {

@AfterEach
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
*/
package org.hibernate.orm.test.mapping.hhh18829;

import jakarta.persistence.Entity;
import jakarta.persistence.Id;
import org.hibernate.testing.orm.junit.DomainModel;
import org.hibernate.testing.orm.junit.JiraKey;
import org.hibernate.testing.orm.junit.SessionFactory;
Expand All @@ -15,7 +17,7 @@

import static org.junit.jupiter.api.Assertions.assertEquals;

@DomainModel(annotatedClasses = EmployeeWithoutIdClass.class)
@DomainModel(annotatedClasses = {EmployeeWithoutIdClass.class, AutoGeneratedIdClassTest.Inner.class})
@JiraKey(" HHH-18829")
@SessionFactory
public class AutoGeneratedIdClassTest {
Expand All @@ -35,6 +37,19 @@ void setUp(SessionFactoryScope sessionFactoryScope) {
two.address = "1600 Pennsylvania Avenue";
sess.persist( two );
} );
sessionFactoryScope.inTransaction( sess -> {
final var one = new Inner();
one.empName = "John Doe";
one.empId = 1;
one.address = "10 Downing Street, SW1A 2AA";
sess.persist( one );

final var two = new Inner();
two.empName = "Dave Default";
two.empId = 13;
two.address = "1600 Pennsylvania Avenue";
sess.persist( two );
} );
}

@Test
Expand All @@ -43,10 +58,30 @@ public void test(SessionFactoryScope sessionFactoryScope)
final var idClass = Class.forName( EmployeeWithoutIdClass.class.getName() + "_$Id" );
final var id = idClass.getConstructors()[0].newInstance( "John Doe", 1 );
final var employees = sessionFactoryScope.fromSession(
sess -> sess.createQuery( "from EmployeeWithoutIdClass where id=:id", EmployeeWithoutIdClass.class ).setParameter( "id", id )
sess -> sess.createQuery( "from EmployeeWithoutIdClass where id=:id", EmployeeWithoutIdClass.class )
.setParameter( "id", id )
.getResultList()
);
assertEquals( 1, employees.size() );
assertEquals( "10 Downing Street, SW1A 2AA", employees.get( 0 ).address );
}

@Test
public void innerEntityClassTest(SessionFactoryScope sessionFactoryScope)
throws ClassNotFoundException, InvocationTargetException, InstantiationException, IllegalAccessException {
final var idClass = Class.forName( AutoGeneratedIdClassTest .class.getName() + "_$Inner_$Id" );
final var id = idClass.getConstructors()[0].newInstance( "Dave Default", 13 );
final Inner employee = sessionFactoryScope.fromSession(
sess -> sess.find( Inner.class, id ) );
assertEquals( "1600 Pennsylvania Avenue", employee.address );
}

@Entity
static class Inner {
@Id
String empName;
@Id
Integer empId;
String address;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import jakarta.persistence.Id;
import jakarta.persistence.ManyToOne;

import org.hibernate.annotations.processing.Exclude;
import org.hibernate.orm.test.jpa.BaseEntityManagerFunctionalTestCase;

import org.junit.Test;
Expand All @@ -21,6 +22,7 @@
/**
* @author Vlad Mihalcea
*/
@Exclude
public class IdManyToOneTest extends BaseEntityManagerFunctionalTestCase {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import jakarta.persistence.Id;
import jakarta.persistence.ManyToOne;

import org.hibernate.annotations.processing.Exclude;
import org.hibernate.envers.Audited;
import org.hibernate.envers.RevisionType;
import org.hibernate.envers.query.AuditEntity;
Expand All @@ -29,6 +30,7 @@
* @author Chris Cranford
*/
@JiraKey(value = "HHH-11748")
@Exclude
public class MultipleIdRelatedIdQueryTest extends BaseEnversJPAFunctionalTestCase {
@Override
protected Class<?>[] getAnnotatedClasses() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,18 @@ public void test() {
"EmployeeWithIdClass_ should not have inner class Id" );
}

@Test
@WithClasses(value = {Outer.Inner.class, Outer.Super.class})
@TestForIssue(jiraKey = "HHH-18829")
public void testInner() {
System.out.println( TestUtil.getMetaModelSourceAsString( Outer.class ) );
System.out.println( TestUtil.getMetaModelSourceAsString( Outer.Inner.class ) );
System.out.println( TestUtil.getMetaModelSourceAsString( Outer.Super.class ) );

checkIfIdClassIsGenerated( Outer.Inner.class, new String[] {"empName", "empId"} );
checkIfIdClassIsGenerated( Outer.Super.class, new String[] {"empName", "empId"} );
}

private static void checkIfIdClassIsGenerated(Class<?> entityClass, String[] idComponentNames) {
final var clazz = getMetamodelClassFor( entityClass );
final var maybeIdClass = Arrays.stream( clazz.getClasses() )
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Red Hat Inc. and Hibernate Authors
*/
package org.hibernate.processor.test.hhh18829;

import jakarta.persistence.Entity;
import jakarta.persistence.Id;
import jakarta.persistence.MappedSuperclass;

public class Outer {

@Entity
static class Inner {
@Id
String empName;
@Id
Integer empId;
String address;
}

@MappedSuperclass
static class Super {
@Id
String empName;
@Id
Integer empId;
String address;
}
}