在service代码中 throw new Excepion("自定义异常“) 发现没有回滚,
然后百度了下,
改为抛出运行时异常 throw new RuntimeException("自定义运行时异常") 发现真的回滚了,
原来 spring 事务 只有碰到运行时异常 才回滚