No such property: transactionStatus for class: org.siti.TicketController.
The error occurs here:
if (ticket.hasErrors()) {
transactionStatus.setRollbackOnly()
respond ticket.errors, view:'edit'
return
}
but the controller imports import grails.transaction.Transactional and the controller is annotated with @Transactional(readOnly = true) grails version 3.2.4
@Transactional. That should cause thetransactionStatusproperty to be added to the class at compile time. - Jeff Scott Brown