spring AOP 配置

需要的JAR包:antlr-2.7.6.jar  aspectjrt.jar  aspectjweaver.jar   cglib-nodep-2.1_3.jar

首先创建一个普通类(主要类)

<span style="font-size:14px;">public class aopServer {

	public void sayhello(){
		System.out.println("aopServer");
	}
}</span>

写一个切面类

<span style="font-size:14px;">public class aopLog {
	public void berfor(){
		System.out.println("berfor log");
	}	
}</span>

spring中两种方式配置AOP  一种是annotation,另一种是xml


annotion方式的配置

在spring的配置文件中加入:

<span style="white-space:pre">	</span><!-- 启用注解方式配置AOP -->
	<context:annotation-config/>
	<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
	<!-- 扫描包-->
	<context:component-scan base-package="com.log"></context:component-scan>
在切面类上添加注解
@Aspect  //定义为切面类
@Component  //注入IOC容器
在切面类的对应方法上添加注解@Berfore或@after ,这两个的value值为execution表达式 :execution(public void com.server.aopServer.sayhello())
可以“*” 匹配,“..” 表示方法的任意参数
XML方式配置:
<span style="font-family: Arial, Helvetica, sans-serif;"><aop:config></span>
    <aop:aspect id="myAop" ref="log">
      <aop:pointcut id="target" expression="execution(* com.server.aopServer.sayhello(..))"/>
      <aop:before method="berfor" pointcut-ref="target"/>
    </aop:aspect>
  </aop:config>
 



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Spring AOP配置可以通过XML方式或注解方式进行。 XML方式的配置步骤如下: 1. 在Spring配置文件中引入aop的约束,例如:xmlns:aop="http://www.springframework.org/schema/aop"。 2. 把通知Bean交给Spring管理,使用<bean>标签进行配置。 3. 使用<aop:config>标签开始AOP配置。 4. 使用<aop:aspect>标签配置切面。 5. 使用对应的标签配置通知的类型,例如<aop:before>表示前置通知。 6. 在<aop:before>标签中指定通知方法和切入点表达式。 注解方式的配置步骤如下: 1. 在配置类上使用@Configuration注解进行标记。 2. 使用@ComponentScan注解指定需要扫描的包。 3. 使用@EnableAspectJAutoProxy注解开启Spring对注解AOP的支持。 以上是关于Spring AOP配置的简要说明,具体的配置内容可以参考引用的资料\[1\]、\[2\]和\[3\]。 #### 引用[.reference_title] - *1* *3* [Spring AOP 应用:三种配置及实现方式](https://blog.csdn.net/qq_37829947/article/details/117955529)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [【spring配置】——spring aop配置](https://blog.csdn.net/javawebxy/article/details/50492616)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值