文章目录 Spring事务基本配置事务传播属性事务隔离级别 Spring事务 基本配置 事务传播属性 @Transactional public boolean MethodA(long id, String name) throws Exception { methondB.test(id, name); return true; } 支持当前事务,即MethodA有事务,methodB就用A的事务 事务隔离级别