HHH-15285 Calling getJavaType() of @ElementCollection with basic types returns wrong type
This commit is contained in:
parent
192b591c51
commit
b88094e70a
|
@ -101,6 +101,11 @@ public abstract class AbstractPluralAttribute<D, C, E>
|
||||||
return getValueGraphType();
|
return getValueGraphType();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Class<C> getJavaType() {
|
||||||
|
return getAttributeJavaType().getJavaTypeClass();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
public SimpleDomainType<E> getValueGraphType() {
|
public SimpleDomainType<E> getValueGraphType() {
|
||||||
|
|
Loading…
Reference in New Issue