c语言sscanf函数的用法是什么
294
2022-12-27
Spring Aop注解实现
目录Spring-aop-理论知识 Spring-Aop-注解实现 项目结构图具体步骤:1、创建maven 项目 导入依赖 创建好项目结构2、写一个接口 及 其实现类3、切面类4、application.xml 文件测试总结
Spring-aop-理论知识 Spring-Aop-注解实现 项目结构图
具体步骤:
1、创建maven 项目 导入依赖 创建好项目结构
2、写一个接口 及 其实现类
/**
* @version 1.0
* @author: crush
* @date: 2021-03-05 10:26
*/
public interface TestDao {
public void delete();
}
/**
* @version 1.0
* @author: crush
* @date: 2021-03-05 10:27
*/
@Service
public class TestDaoImpl implements TestDao {
public void delete() {
System.out.println("正在执行的方法-->删除");
}
}
3、切面类
/**
* @version 1.0
* @author: crush
* @MXVokxJBdate: 2021-03-10 18:04
*/
@Aspect
@Component
public class MyAspectAnnotation {
@Pointcut("execution(* com.dao.*.*(..))")
private void myPointCut(){
}
/**
* 前置通知 使用JoinPoint 接口作为参数获得目标对象的信息
* @Before("myPointCut()") ==
*
**/
@Before("myPointCut()")
public void before(JoinPoint jp){
System.out.print("前置通知:模拟权限控制");
System.out.println("目标对象:"+jp.getTarget()+",被增强的方法:"+jp.getSignature().getName());
}
@AfterReturning("myPointCut()")
public void afterReturning(JoinPoint jp){
System.out.print("后置返回通知:"+"模拟删除临时文件");
System.out.println(",被增强的方法"+jp.getSignature().getName());
}
@Around("myPointCut()")
public Object around(ProceedingJoinPoint pjp) throws Throwable {
System.out.println("环绕开始:执行目标方法前,模拟开启事务");
Object obj = pjp.proceed();
System.out.println("环绕结束:执行目标方法后,模拟关闭事务");
return obj;
}
@AfterThrowing(value = "myPointCut()",throwing = "throwable")
public void except(Throwable throwable){
System.out.println("异常通知:"+"程序执行异常"+throwable.getMessage());
}
@After("myPointCut()")
public void after(){
System.out.println("最终通知:释放资源");
}
}
4、application.xml 文件
xmlns:xsi="http://w3.org/2001/XMLSchema-instance" xmlns:context="http://springframework.org/schema/context" xmlns:aop="http://springframework.org/schema/aop" xsi:schemaLocation="http://springframework.org/schema/beans http://springframewoMXVokxJBrk.org/schema/beans/spring-beans.xsd http://springframework.org/schema/context http://springframework.org/schema/context/spring-context.xsd http://springframework.org/schema/aop https://springframework.org/schema/aop/spring-aop.xsd">
xmlns:xsi="http://w3.org/2001/XMLSchema-instance"
xmlns:context="http://springframework.org/schema/context"
xmlns:aop="http://springframework.org/schema/aop"
xsi:schemaLocation="http://springframework.org/schema/beans
http://springframewoMXVokxJBrk.org/schema/beans/spring-beans.xsd
http://springframework.org/schema/context
http://springframework.org/schema/context/spring-context.xsd http://springframework.org/schema/aop https://springframework.org/schema/aop/spring-aop.xsd">
测试
@Test
public void Test(){
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
TestDao testDao = applicationContext.getBean("testDaoImpl", TestDaoImpl.class);
testDao.delete();
/**
* 输出:
* 环绕开始:执行目标方法前,模拟开启事务
* 前置通知:模拟权限控制目标对象:com.dao.TestDaoImpl@2bef51f2,被增强的方法:delete
* 正在执行的方法-->删除
* 后置返回通知:模拟删除临时文件,被增强的方法delete
* 最终通知:释放资源
http:// * 环绕结束:执行目标方法后,模拟关闭事务
*/
}
总结
本篇文章就到这里了,希望能给你带来帮助,也希望您能够多多关注我们的更多内容!
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~