SSM 中事务如何配置

SSM 中事务如何配置_第1张图片

其中这两个值必须一样 


    
        
    
	
    
    
      
	  
	  
	             
	             
	             
	             
	             
	             
	             
	             
	             
	             
	             
	             
	             
	             
	             
	         
	  
    
    
      
         
         
	 

过程中还报了一个错找不到某个类,百度过之后通过maven导入了一个包

                  
  org.apache.geronimo.bundles  
  aspectjweaver  
  1.6.8_2  

还有下方的 aop的execution的值要改成包的位置 ,各种写法如下

任意公共方法的执行:

execution(public * *(..))

任何一个以“set”开始的方法的执行:

execution(* set*(..))

AccountService 接口的任意方法的执行:

execution(* com.xyz.service.AccountService.*(..))

定义在service包里的任意方法的执行:

execution(* com.xyz.service.*.*(..))

定义在service包和所有子包里的任意类的任意方法的执行:

execution(* com.xyz.service..*.*(..))

定义在pointcutexp包和所有子包里的JoinPointObjP2类的任意方法的执行:

execution(* com.test.spring.aop.pointcutexp..JoinPointObjP2.*(..))")

***> 最靠近(..)的为方法名,靠近.*(..))的为类名或者接口名,如上例的JoinPointObjP2.*(..))


你可能感兴趣的:(spring框架)