Could not extract ParameterizedType representation of AttributeConverter definition
Description
Activity
Steve EbersoleMay 20, 2015 at 5:29 AM
Thanks @Svein Baardsen! I will take a look tomorrow
Todd RichmondFebruary 3, 2015 at 12:39 AMEdited
This issue seems to be a bit more serious. I'm trying to create a generic converter to store arbitrary fields as JSON instead of serialized LOBs. I don't need to be able to query on data in the field object and this makes it much easier to debug because the format will be identical to what goes over the REST API. The problem is that it cannot determine the class for T when T is either a standard or templated class (like List<Foo>)
Hibernate UserTypes have the same issue with templated types, but will work with standard objects. However, that requires creating empty classes to wrap all Lists/Sets/Maps and is Hibernate specific instead of generic JPA
public class JSONAttributeConverter<T> implements AttributeConverter<T, String> {
private final Class<T> clazz;
@SuppressWarnings("unchecked")
public JSONAttributeConverter() {
clazz = (Class<T>) ((ParameterizedType) getClass().
getGenericSuperclass()).getActualTypeArguments()[0];
}
@Override
public String convertToDatabaseColumn(final T object) {
return object == null ? null : new JsonUtility<>(clazz).toString(object);
}
@Override
public T convertToEntityAttribute(final String value) {
return value == null ? null : new JsonUtility<>(clazz).readFromString(
value);
}
}
...
It turns out that moving the implements AttributeConverter out of the template class and into the subclass allows standard objects to work. I still need wrapper classes for templated fields but can at least use JPA conventions and the simpler AttributeConverter interface
public class JSONAttributeConverter<T> {
Jörg HohwillerOctober 29, 2014 at 7:12 PM
I am having the same problems. Reflective code has to be written with extreme care and requires deep knowledge.
This is the same with HHH-8958.
See also:
http://m-m-m.sourceforge.net/apidocs/net/sf/mmm/util/reflect/api/GenericType.html
http://docs.guava-libraries.googlecode.com/git/javadoc/com/google/common/reflect/TypeToken.html
Wojciech KrakSeptember 16, 2014 at 10:37 PM
Yes, still the same. I've updated test case: https://github.com/wjtk/mytests-jpa-spring (branch: hibernate-bug)
When custom AttributeConverter has no explicit "implements AttributeConverter" (it is subclass of some base implementation of AttributeConverter) I got exception as below.
When I explicitly add "implements AttributeConverter" everything is ok, so there is easy workaround.
I created test case:
https://github.com/wjtk/mytests-jpa-spring
on branch "hibernate-bug", in class: wkr.testy.jpa.converters.ColorOneLetterConverter.
Exception
Caused by: org.hibernate.AssertionFailure: Could not extract ParameterizedType representation of AttributeConverter definition from AttributeConverter implementation class [wkr.testy.jpa.converters.ColorOneLetterConverter]
at org.hibernate.cfg.AttributeConverterDefinition.extractAttributeConverterParameterizedType(AttributeConverterDefinition.java:94)
at org.hibernate.cfg.AttributeConverterDefinition.<init>(AttributeConverterDefinition.java:52)
at org.hibernate.cfg.Configuration.addAttributeConverter(Configuration.java:2690)
at org.hibernate.cfg.Configuration.addAttributeConverter(Configuration.java:2641)
at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.buildHibernateConfiguration(EntityManagerFactoryBuilderImpl.java:1129)
at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl$4.perform(EntityManagerFactoryBuilderImpl.java:846)
at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl$4.perform(EntityManagerFactoryBuilderImpl.java:843)
at org.hibernate.boot.registry.classloading.internal.ClassLoaderServiceImpl.withTccl(ClassLoaderServiceImpl.java:399)
at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:842)
at org.hibernate.jpa.HibernatePersistenceProvider.createContainerEntityManagerFactory(HibernatePersistenceProvider.java:150)
at org.hibernate.ejb.HibernatePersistence.createContainerEntityManagerFactory(HibernatePersistence.java:67)
at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:318)
at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:318)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1612)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1549)
... 53 more