spring实现aop的两种方式

本文详细介绍了Spring AOP的两种实现方式:XML配置和注解(AspectJ)实现。包括XML配置、切面通知类、目标类的实现、测试类以及实现结果的展示。在注解实现部分,还涉及到请求参数的获取。文章最后总结了作者在学习过程中遇到的问题和解决经验。
摘要由CSDN通过智能技术生成


前言

提示:实现AOP的方式分为XML方式和注解(AspectJ)实现方式。


一、XML实现AOP方式

1.XML配置

代码如下(示例):

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/aop
       http://www.springframework.org/schema/aop/spring-aop.xsd">

    <!-- 声明一个目标类 -->
    <bean id="TmplController" class="org.example.aop.controller.IndexController"/>  
    
    <!-- 声明通知类 -->
    <bean id="aspectBean" class="org.example.aop.config.AopAspect" />
    <!-- AOP配置 -->
    <aop:config>
        <!-- 切入点 -->
        <aop:pointcut id="pointcut" expression="execution(* org.example.aop.controller..*(..))"/>
        <!--定义通知-->
        <aop:aspect ref="aspectBean">
            <aop:before method="beforeAspect" pointcut-ref="pointcut"/>
            <aop:after-returning method="afterReturnAspect"  pointcut-ref="pointcut" />
            <aop:after method="afterAspect" pointcut-ref="pointcut" />
            <aop:after-throwing method="afterThrowing" pointcut-ref="pointcut"  />
        </aop:aspect>
    </aop:config>
</beans>

2.切面通知类的实现

代码如下(示例):

package org.example.aop.config;
import org.aopalliance.intercept.Joinpoint;
/**
 * @author mr.monster
 * @version 1.0
 * @Description
 * @date 2021/5/3 23:02
 */
public class AopAspect {
   
    //前置操作
    public void beforeAspect(){
   
        System.out.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值