文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Java Spring之基于注解的AOP怎么配置

2023-07-05 22:16

关注

本篇内容主要讲解“Java Spring之基于注解的AOP怎么配置”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Java Spring之基于注解的AOP怎么配置”吧!

1 环境搭建

1.1 第一步:准备必要的代码和 jar 包

1.2 第二步:在配置文件中导入 context 的名称空间

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"    xmlns:aop="http://www.springframework.org/schema/aop"    xmlns:context="http://www.springframework.org/schema/context"    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    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        http://www.springframework.org/schema/context        http://www.springframework.org/schema/context/spring-context.xsd">     <!-- 配置数据库操作对象 -->    <bean id="dbAssit" class="com.itheima.dbassit.DBAssit">        <property name="dataSource" ref="dataSource"></property>                <!-- 指定 connection 和线程绑定 -->        <property name="useCurrentConnection" value="true"></property>    </bean>     <!-- 配置数据源 -->    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">        <property name="driverClass" value="com.mysql.jdbc.Driver"></property>        <property name="jdbcUrl" value="jdbc:mysql:///spring_day02"></property>        <property name="user" value="root"></property>        <property name="password" value="1234"></property>    </bean></beans>

1.3 第三步:把资源使用注解配置

@Service("accountService")public class AccountServiceImpl implements IAccountService {     @Autowired    private IAccountDao accountDao;}
@Repository("accountDao")public class AccountDaoImpl implements IAccountDao {    @Autowired    private DBAssit dbAssit ;}

 1.4 第四步:在配置文件中指定 spring 要扫描的包

<!-- 告知 spring,在创建容器时要扫描的包 --><context:component-scan base-package="com.itheima"></context:component-scan>

2 配置步骤

2.1 第一步:把通知类也使用注解配置

@Component("txManager")public class TransactionManager {     //定义一个 DBAssit    @Autowired    private DBAssit dbAssit ;}

2.2 第二步:在通知类上使用@Aspect 注解声明为切面

@Component("txManager")@Aspect//表明当前类是一个切面类public class TransactionManager {     //定义一个 DBAssit    @Autowired    private DBAssit dbAssit ;}

2.3 第三步:在增强的方法上使用注解配置通知

2.3.1 @Before
//开启事务@Before("execution(* com.itheima.service.impl.*.*(..))")public void beginTransaction() {     try {        dbAssit.getCurrentConnection().setAutoCommit(false);    } catch (SQLException e) {        e.printStackTrace();    }}
2.3.2 @AfterReturning
//提交事务@AfterReturning("execution(* com.itheima.service.impl.*.*(..))")public void commit() {     try {        dbAssit.getCurrentConnection().commit();    } catch (SQLException e) {        e.printStackTrace();    }}
2.3.3 @AfterThrowing
//回滚事务@AfterThrowing("execution(* com.itheima.service.impl.*.*(..))")public void rollback() {     try {        dbAssit.getCurrentConnection().rollback();    } catch (SQLException e) {        e.printStackTrace();    }}
2.3.4 @After
//释放资源@After("execution(* com.itheima.service.impl.*.*(..))")public void release() {     try {        dbAssit.releaseConnection();    } catch (Exception e) {        e.printStackTrace();    }}

2.4 第四步:在 spring 配置文件中开启 spring 对注解 AOP 的支持

<!-- 开启 spring 对注解 AOP 的支持 --><aop:aspectj-autoproxy/>

3 环绕通知注解配置 @Around

@Around("execution(* com.itheima.service.impl.*.*(..))")public Object transactionAround(ProceedingJoinPoint pjp) {     //定义返回值    Object rtValue = null;     try {            //获取方法执行所需的参数        Object[] args = pjp.getArgs();            //前置通知:开启事务        beginTransaction();         //执行方法        rtValue = pjp.proceed(args);         //后置通知:提交事务        commit();        }catch(Throwable e) {         //异常通知:回滚事务        rollback();        e.printStackTrace();    }finally {     //最终通知:释放资源    release();    }     return rtValue;}

4 切入点表达式注解 @Pointcut

@Pointcut("execution(* com.itheima.service.impl.*.*(..))")private void pt1() {}         @Around("pt1()")//注意:千万别忘了写括号    public Object transactionAround(ProceedingJoinPoint pjp) {     //定义返回值    Object rtValue = null;     try {        //获取方法执行所需的参数        Object[] args = pjp.getArgs();         //前置通知:开启事务        beginTransaction();                //执行方法        rtValue = pjp.proceed(args);         //后置通知:提交事务        commit();    }catch(Throwable e) {         //异常通知:回滚事务        rollback();        e.printStackTrace();    }finally {         //最终通知:释放资源        release();    }        return rtValue;}

5 不使用 XML 的配置方式

@Configuration@ComponentScan(basePackages="com.itheima")@EnableAspectJAutoProxypublic class SpringConfiguration { }

到此,相信大家对“Java Spring之基于注解的AOP怎么配置”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯