Hello!
Has there been any discussion about adding support for DynamicParameterizedType, or something similar, for CompositeUserType?
My use case is that I’d like to access the @Money annotation applied to the field in order to derive the decimals and rounding configuration.
@Money(decimals = 2, rounding = RoundingMode.HALF_EVEN)
@CompositeType(MoneyCompositeUserType.class)
@Columns(columns = {
@Column(name = "price_amount"),
@Column(name = "price_currency")
})
Money price;