多学习。

摘要: 配置文件 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-ins 阅读全文
posted @ 2022-04-18 21:12 czyaaa 阅读(121) 评论(0) 推荐(0)
摘要: 四种通知 若出现了异常,会执行异常通知,但不会执行后置通知 <!--配置AOP--> <aop:config> <aop:aspect id="logAdvice" ref="logger"> <!--配置前置通知:在切入点方法执行之前执行--> <aop:before method="before 阅读全文
posted @ 2022-04-18 19:32 czyaaa 阅读(36) 评论(0) 推荐(0)
摘要: 步骤 示例 service package com.czy.service.impl; import com.czy.service.AccountService; public class AccountServiceImpl implements AccountService { public 阅读全文
posted @ 2022-04-18 16:47 czyaaa 阅读(45) 评论(0) 推荐(0)