Does Grails support Hibernate Optimistic Lock Type ALL?

117 Views Asked by At

Grails domain class annotated with:

@OptimisticLocking(type = OptimisticLockType.ALL)
@DynamicUpdate
class T...

When calling save on the domain object, the generated SQL update statement only includes id columns in the where clause, not all columns. Does Grails (version 2.5.1) support all the Hibernate annotations including OptimisticLockType.ALL?

0

There are 0 best solutions below