错误: warning no match for this type name: com.zrm.service [Xlint:invalidAbsoluteTypeName]

Spring 配置错误引起的

expression="execution(* com.service.*.*(..))";    // 后面两个*,表示service包下的所有类下的所有方法
 

错误: warning no match for this type name: com.zrm.service [Xlint:invalidAbsoluteTypeName]

spring使用


  
  
  

出现warning no match for this type name: com.zrm.service [Xlint:invalidAbsoluteTypeName]错误

配置事务时,一定注意expression="execution(* com.zrm.service.*(..))" 应该为

expression="execution(* com.zrm.service.*.*(..))" ,这样,切点才定位到方法上了。

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