在Spring事务管理中,若ServiceA的methodA方法(@Transactional)调用ServiceB的methodB方法(@Transactional(propagation=Propagation.REQUIRES_NEW)),当methodB执行时抛出未捕获的RuntimeException,以下结果正确的是?
methodB的事务回滚,methodA的事务继续提交
methodB的事务回滚,methodA的事务也回滚
methodB的事务提交,methodA的事务回滚
两个事务均提交