spring springmvc 将事物管理(@Transactional)分别加在 controller和service层

1.将事物加在contrller层,只需要在springmvc.xml中加上即可,并且contrller类中加上@Transactional即可。

前提是在spring.xml中要有事物管理器的配置即

   
     
       
   


2.将事物加在service层,需要在springmvc.xml中加上      
       
   
这句话,在spring.xml中加上   
   
,并且service类中加上@Transactional即可。

前提是在spring.xml中要有事物管理器的配置即

   
     
       
   

   
   

这是我具体实施时参照的url:

http://blog.csdn.net/will_awoke/article/details/12002705

http://5880861.blog.51cto.com/5870861/1544168/

你可能感兴趣的:(spring,springmvc)