Working with a legacy codebase in Grails. Under some conditions (we’re unclear exactly what) we get a mysterious NPE, stack trace as below, while doing a findBy.
So far we’re sort of stymied; this appears in several fora for Hibernate but the responses seem to come down to “something is wrong with your schema.” It would be wonderful to find some additional detail to help us track the issue down.
Update
Thanks for the answer. Yes, it’s clear that at the point this NPE happens, version is null. The trouble is that when we look at it in the code, it’s not null.
We’ve begun to suspect there’s a threading issue.
Caused by: java.lang.NullPointerException
at org.hibernate.type.LongType.next(LongType.java:79)
at org.hibernate.engine.Versioning.increment(Versioning.java:131)
at org.hibernate.event.def.DefaultFlushEntityEventListener.getNextVersion(DefaultFlushEntityEventListener.java:387)
at org.hibernate.event.def.DefaultFlushEntityEventListener.scheduleUpdate(DefaultFlushEntityEventListener.java:279)
at org.hibernate.event.def.DefaultFlushEntityEventListener.onFlushEntity(DefaultFlushEntityEventListener.java:151)
at org.hibernate.event.def.AbstractFlushingEventListener.flushEntities(AbstractFlushingEventListener.java:219)
at org.hibernate.event.def.AbstractFlushingEventListener.flushEverythingToExecutions(AbstractFlushingEventListener.java:99)
at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:49)
at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:1027)
at org.codehaus.groovy.grails.plugins.quartz.listeners.SessionBinderJobListener.jobWasExecuted(SessionBinderJobListener.java:58)
at org.quartz.core.QuartzScheduler.notifyJobListenersWasExecuted(QuartzScheduler.java:1910)
Here is my understanding of the trace:
findByflushLong) that needs to get updatedThe body of
org.hibernate.engine.Versioning.increment(Versioning.java:131)is:And the body of
org.hibernate.type.LongType.next(LongType.java:79)(which provides the implementation of the aboveversionType.next):It seems clear that the
versionpassed toincrementisnull.I would thus look in the database for a record with a
NULLvalue in its version column. Activating SQL logging might help to narrow down the search.