Are named queries supported by default in Hibernate version 4.2.3.Final? I get this exception with one:
java.lang.ArrayIndexOutOfBoundsException: 0 at org.hibernate.ejb.AbstractEntityManagerImpl.createNamedQuery(AbstractEntityManagerImpl.java:637) at sun.reflect.GeneratedMethodAccessor23.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at org.springframework.orm.jpa.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler.invoke(SharedEntityManagerCreator.java:241) at $Proxy78.createNamedQuery(Unknown Source)
When I execute this query using the Query class, everything is fine. TypedQuery seems to be a problem here, and the exception is not very useful. I tried this with simple queries to very complex queries, and all of them seem to fail if I didn't use Query for the named main query.
source share