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

Conversation

cigaly
Copy link
Contributor

@cigaly cigaly commented Feb 27, 2025

Jira issue HHH-19209

  • sorting record components when generating ID class
  • added tests to check ID class generation from inner classes; fixed minor bug in generated class name
  • test classes in core that are using entity (instead of ID) as parameter to find method are annotated with @Exclude to avoid failing tests

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license
and can be relicensed under the terms of the LGPL v2.1 license in the future at the maintainers' discretion.
For more information on licensing, please check here.


@cigaly cigaly changed the title HHH-19209 Components of auto generated record ID class must be sorted by property name HHH-19209 Verify and fix ID class generation for inner classes Feb 28, 2025
@cigaly
Copy link
Contributor Author

cigaly commented Feb 28, 2025

My assumption that record component must be alphabetically sorted by name was not correct, so All code and test based on the assumption are now removed.
Due to that change, three existing test cases are now failing:
org.hibernate.orm.test.annotations.formula.JoinFormulaManyToOneLazyFetchingTest,
org.hibernate.orm.test.annotations.formula.JoinFormulaManyToOneNotIgnoreLazyFetchingTest, and
org.hibernate.orm.test.annotations.formula.JoinFormulaOneToOneNotIgnoreLazyFetchingTest.
But this is not caused by changes in this PR.

@cigaly
Copy link
Contributor Author

cigaly commented Mar 5, 2025

All tests are failing due to problem described in Jira issue HHH-19214 [ see PR #9824 ]. This is not caused by changes made in this PR:

@cigaly cigaly force-pushed the HHH-19209-components_sorting+inner_class_id_generation branch 2 times, most recently from b519c71 to 73289ad Compare March 31, 2025 20:25
@gavinking
Copy link
Member

@cigaly Right now it is generating the id class with the name Entity_.Id, and I think I prefer that to the ugly $.

@cigaly
Copy link
Contributor Author

cigaly commented Apr 1, 2025

I am afraid that (like as with money) you can not avoid $ with subclass. In include statement, you use ., but class name will always have $ in the place of .. Like in ...

jshell> class X { class Y {}}
|  created class X

jshell> var c = X.Y.class
c ==> class X$Y

Something like split personality :-)

cigaly added 5 commits April 1, 2025 10:18
          - check generation of ID class for inner classes
          - check if record components of generated ID class are sorted by name
@cigaly cigaly force-pushed the HHH-19209-components_sorting+inner_class_id_generation branch from 73289ad to 59f7da0 Compare April 1, 2025 08:18
@gavinking
Copy link
Member

Oh, my apologies, I did not read carefully enough and I thought we were in the annotation processor where the APIs shield us from the $. I guess I don't really understand what that code is doing.

@gavinking
Copy link
Member

I guess I don't really understand what that code is doing.

Oh, alright, I get it now.

@cigaly
Copy link
Contributor Author

cigaly commented Apr 1, 2025

There is also problem with Envers. It can not handle record as IdClass so I have to annotate one test class with @Exclude.

It seems not so difficult to fix that, but I am not sure if this can be done without changing some existing interfaces, so I would rather prefer not to do that on my own.

@gavinking
Copy link
Member

There is also problem with Envers. It can not handle record as IdClass

Does this mean that id class generation breaks existing code that uses Envers?

@cigaly
Copy link
Contributor Author

cigaly commented Apr 1, 2025

Yes, under two conditions - if generated ID class is record and if Envers remains in pre-records age. Quickest (and, hopefully, temporary) fix can be to generate ID class as POJO, but the long term fix should to introduce Envers to record.

          Problem is not connected with meta model generation, test is failing if ID class is manually added
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants