Using:
- Spring 3.1.2
- Spring Data JPA 1.1.0.RELEASE
- Hibernate 4.1.6
- RESTEasy 2.3.5
I'm building a RESTful webservices platform talking to an Oracle database. Right now we're working on a Subscriber API. Our Subscriber repository object is mapped to a USERS table in Oracle. For versioning, we're using the ORA_ROWSCN pseudo-column on the USERS table. Here's the version member variable on the Subscriber class:
@Column(name = "ORA_ROWSCN", nullable = false, updatable = false, insertable = false)
@Version
@Generated(value = GenerationTime.ALWAYS)
protected long version = 0;
When I try to execute a Create Subscriber request, I see the following in the application log:
Hibernate: select USERIDSEQUENCE.nextval from dual
Hibernate: insert into USERS (...[snip]...) values (...[snip]...)
Hibernate: select subscriber_.ORA_ROWSCN as ORA19_5_ from USERS subscriber_ where subscriber_.id=?
The first two lines are obviously Hibernate inserting the new USERS record; presumably the third line is Hibernate attempting to load the ORA_ROWSCN value for the new row so that it can set the version attribute on the Subscriber object. However, that results in this exception:
org.springframework.orm.hibernate3.HibernateSystemException: Null value was assigned to a property of primitive type setter of com.mycompany.webservices.model.Subscriber.version;
nested exception is org.hibernate.PropertyAccessException: Null value was assigned to a property of primitive type setter of com.mycompany.webservices.model.Subscriber.version
I assume this means that the attempt to select the ORA_ROWSCN value did not return anything. Why would that be? I have a @Transactional wrapper around the service method that creates subscribers; I would assume that any code running in that method (or in sub-methods) can see interim database inserts/updates. But from this exception, it appears that perhaps that's not the case?
longto aLong. The create request succeeded. Then I tried an update request, which results in aorg.hibernate.StaleObjectStateExceptionwhen the Spring JpaTransactionManager tries to commit the transaction (the service layer update method has a@Transactionalannotation). I think perhaps this StaleObjectStateException has the same underlying cause as the originalorg.hibernate.PropertyAccessException, which is that the code is not seeing the updated ORA_ROWSCN value resulting from the update of the USERS table. – Eric O'Connor Feb 19 at 20:15