`
I_conquer
  • 浏览: 25952 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

(转)expression="execution(*service..*.*(..))"

 
阅读更多

(* com.evan.crm.service.*.*(..))中几个通配符的含义: 


|第一个 * —— 通配 随便率性返回值类型| 
|第二个 * —— 通配包com.evan.crm.service下的随便率性class| 
|第三个 * —— 通配包com.evan.crm.service下的随便率性class的随便率性办法| 
|第四个 .. —— 通配 办法可以有0个或多个参数| 

 

<!-- 配置那些类的方法进行事务管理 --> 
<aop:config> 
<aop:pointcut id="allServiceMethod" expression="execution (* com.cms.sys.service.*.*(..))" />
<aop:advisor advice-ref="txAdvice" pointcut-ref="allServiceMethod" /> 
</aop:config> 

还有一个 
execution (* com.cms.art.service.*.*(..))" 

要怎么写?

 

 

可以这样写:将execution分开写。 
<aop:config> 
<aop:pointcut id="allServiceMethod" expression="(execution (* com.cms.sys.service.*.*(..)))or (execution (* com.cms.art.service.*.*(..)))" />
<aop:advisor advice-ref="txAdvice" pointcut-ref="allServiceMethod" /> 
</aop:config> 

 

原文地址:http://hi.baidu.com/suofang/item/1bea72b7315c3497194697ea

分享到:
评论

相关推荐

    Spring AOP配置源码

    &lt;aop:pointcut expression="execution(* com.spring.service..*(..))" id="pointCut"/&gt;声明一个切入点,注意execution表达式的写法 &lt;aop:before method="before" pointcut-ref="pointCut"/&gt; aop前置通知 ...

    pointcut表达式and or not在xml中配置

    &lt;aop:pointcut id="serviceMethods" expression="not execution(* com.babyhen.service..LoginService.*(..)) and execution(* com.babyhen.service..*Service.*(..))"/&gt; &lt;aop:advisor advice-ref="loggingAdvice...

    struts2.3+hibernate3.6+spring3.1整合的纯xml配置的小项目

    expression="execution(* x.y.service.*Service.*(..))" /&gt; id="noTxServiceOperation" expression="execution(* x.y.service.ddl.DefaultDdlManager.*(..))" /&gt; pointcut-ref="defaultServiceOperation" ...

    Maven拆分代码.zip

    &lt;!--配置连接池--&gt; ... &lt;property name="url" value="jdbc:mysql:///... &lt;aop:pointcut id="pointcut" expression="execution(* com.itheima.service.impl.*.*(..))"/&gt; &lt;aop:advisor advice-ref="advice" pointcut-ref=

    Spring-AOP实例

    例如,`execution(* com.example.service.*.*(..))`表示匹配com.example.service包下的所有类的所有方法。 3. 通知方法(Advice Method):在切点匹配时执行的方法,如上面的`logBefore`和`logAfter`。 五、AOP...

    09spring4_aop1.rar

    在上面的例子中,`execution(* com.example.service.*.*(..))`表示匹配`com.example.service`包下的所有类的所有公共方法。`*`是通配符,`..`表示任意数量的参数。 **五、运行与测试** 在完成了上述配置后,我们...

    Spring Aop的简单实现

    `logBefore`、`logAfter`和`logAround`是通知方法,`pointcut`属性定义了这些通知将在哪些方法上执行,`execution(* com.example.service.*.*(..))`表示匹配com.example.service包下的所有类的所有方法。 接下来,...

    spring aop注解方式、xml方式示例

    &lt;aop:pointcut id="serviceMethods" expression="execution(* com.example.service.*.*(..))" /&gt; &lt;aop:aspect id="loggingAspect" ref="loggingAspectBean"&gt; &lt;aop:after-returning method="logAfterServiceCall...

    spring对AOP的支持(使用Spring的配置文件来演示)

    &lt;aop:pointcut id="serviceMethods" expression="execution(* com.example.service.*.*(..))" /&gt; &lt;!-- 定义通知 --&gt; &lt;aop:before method="beforeAdvice" pointcut-ref="serviceMethods" /&gt; ...

    Spring中Aop的使用包括xml和注解

    &lt;aop:pointcut id="logBefore" expression="execution(* com.example.service.*.*(..))"/&gt; ``` 接下来,我们转向**注解配置AOP**。自Spring 2.5起,Spring引入了基于注解的AOP,这使得配置更加简洁和直观。在`...

    spring学习笔记(十一)

    &lt;aop:pointcut id="serviceMethods" expression="execution(* com.example.service.*.*(..))"/&gt; ``` 另一方面,注解配置更简洁且易于理解和维护。我们可以在切面类上使用`@Aspect`,在方法上使用`@Before`、`@...

    shh框架搭建步骤

    &lt;aop:pointcut id="serviceLayer" expression="execution(* com.example.service.*.*(..))"/&gt; &lt;tx:advice id="txAdvice" transaction-manager="transactionManager"&gt; &lt;tx:method name="*" propagation=...

    Spring AOP之基于Schema配置总结与案例

    例如,`execution(* com.example.service.*.*(..))`表示匹配com.example.service包下的所有类的所有方法。`*`代表任意字符,`..`代表任意参数。 2. **通知(Advice)**: 通知是在特定连接点(由切入点定义)执行...

    SpringAop.rar_aop

    切点表达式`execution(* com.example.service.*.*(..))`匹配了`com.example.service`包下的所有方法。 Spring AOP的强大之处还在于其与Spring IoC的无缝集成。由于Spring容器管理着所有对象,因此可以在任何需要的...

    Spring AOP 配置小节

    &lt;aop:pointcut id="serviceMethods" expression="execution(* com.example.service.*.*(..))"/&gt; ``` 在上面的配置中,`logBefore`和`logAfterReturning`方法是通知,分别在方法调用前和返回后执行。`...

    java面向切面编程

    例如,`execution(* com.example.service.*.*(..))`表示匹配com.example.service包下的所有方法。 在实际应用中,我们可以创建自定义的拦截器(Interceptor),这相当于实现AOP的通知。Spring的`org.spring...

    spring和struts的整合-aop的使用

    &lt;/aop:pointcut id="allMethods" expression="execution(* com.example.myapp.*.*(..))"/&gt; ``` 在这个例子中,`loggingService`是一个包含了`logBefore`和`logAfter`方法的bean,这两个方法会在匹配的切入点(即...

    spring-aop demo及junit测试

    &lt;aop:pointcut id="myPointcut" expression="execution(* com.example.service.*.*(..))" /&gt; &lt;!-- 定义前置通知 --&gt; &lt;aop:before method="beforeAdvice" pointcut-ref="myPointcut" /&gt; &lt;!-- 定义后置通知 --...

    Spring 使用AspectJ 实现 AOP(基于xml文件、基于注解)

    &lt;aop:pointcut id="myPointcut" expression="execution(* com.example.service.*.*(..))"/&gt; &lt;aop:advisor advice-ref="myAdvice" pointcut-ref="myPointcut"/&gt; &lt;aop:aspect ref="myAspect"&gt; &lt;aop:before method=...

Global site tag (gtag.js) - Google Analytics