In my Spring Boot project I have implemented following service method:
@Transactional public boolean validateBoard(Board board) { boolean result = false;
Your transaction annotation in update method will not be regarded by Spring transaction infrastructure if called from some method of same class. For more understanding on how Spring transaction infrastructure works please refer to this.
update