Spring Boot: javax.persistence.TransactionRequiredException: Executing an update/delete query
@Transactional
void removeTempoAccounts() {
Method had default visibility. Therefore the proxy mechanism was not active! After changing to public everthing works as expected!
Try to use the @Transactional annotation from Spring package
like @org.springframework.transaction.annotation.Transactional
Then it should work