解决Spring事务不回滚

在主容器中(applicationContext.xml),将Controller的注解排除掉 


		
		
	


在SpringMVC.xml中,将Service注解排除掉 

 	
 		
 		 
 	


要回滚事务,还需要的抛出运行时异常,

或者在catch 语句块中 加上 TransactionAspectSupport.currentTransactionStatus().setRollbackOnly();



你可能感兴趣的:(Spring)