I’m currently migrating a Hibernate 5.6 project to 6.6. One of the problems I’m dealing with, is a CompositeUserType implementation, that does not translate easily to 6.6.
The old implementation allowed for something like this:
Basically I have 4 boolean typed columns which are mapped to an EnumSet. The dynamic parameter columnEnums tells me for each column to which enum value it belongs.
Hibernate 6.6 doesn’t support this construct anymore. An embeddable class has been introduced and that’s an acceptable solution for most use cases but in my case it is not. My CompositeUserType used to be able to handle a flexible number of columns. Unfortunately, Hibernate now requires me to present a class with attributes, which can vary in name and number.
In order to solve this problem, I have a number of questions:
Is it possible to create an embeddable class with more attributes than are effectively assigned in the entity? So if the embeddable class contains booleans b1, b2, b3, b4, b5, b6 and for the example above I only provide @AttributeOverride for 4 of those. Is Hibernate okay with that or will it complain that I have not assigned the other 2?
Are all-caps variables allowed in the embeddable class?
Can I rely on the fact that DynamicParameterizedType#setParameterValues(Properties parameters) is invoked beforeCompositeUserType#embeddable() ?
Is it possible to annotate the attributes in the embeddable class with something like @Convert(converter = YesNoConverter) ?
You could create an embeddable class for every such columnEnums combination that extend the EnumSet class to implement this. Then you don’t need to worry about CompositeUserType anymore.
I was afraid that would come as an answer but I really need the dynamic approach on this. There are way too many enumerations like this in my project and too many combinations. That’s not a viable solution.
My idea is to use byte-buddy to generate an embedded class. This would essentially lead to your suggested solution. For the example in my original post, it would be something like this:
I would expect to generate this embedded class in DynamicParameterizedType#setParameterValues(Properties parameters) but for that I need to have a yes/no to the questions in my previous post. Especially question 3 is essential in this regard.
As for question 4. I know I can set a default boolean converter but this boolean converter is actually an exception to the rule in the project
Is it possible to create an embeddable class with more attributes than are effectively assigned in the entity?
No
Are all-caps variables allowed in the embeddable class?
Yes
Can I rely on the fact that DynamicParameterizedType#setParameterValues(Properties parameters) is invoked beforeCompositeUserType#embeddable() ?
I think you can as I don’t see a reason why this would/should change, but since it’s not specified anywhere, we might change the order in a future release.
Is it possible to annotate the attributes in the embeddable class with something like @Convert(converter = YesNoConverter) ?
Of course. You can even annotate this on the use-site of the embedded by e.g. @Convert(attributeName = "attr1")
or is there already a solution to my problem?
I would go with the solution I already presented you since it’s the most portable and supported way.