springboot的service实现类方法上添加@Transactional(rollbackFor = Exception.class)事物不回滚

在启动类上添加@EnableTransactionManagement

在service方法上添加@Transactional(rollbackFor = Exception.class)事物回滚不生效
测试在controller service serviceimpl方法上抛出异常事物才生效回滚

请问还有其他方法吗,不用抛异常