Spring(使用Annotation方式的AOP)
Posted 书安
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring(使用Annotation方式的AOP)相关的知识,希望对你有一定的参考价值。
一.配置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:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd "> <context:annotation-config/> <!-- 扫描com.daoan下面的所有包,包括子包 --> <context:component-scan base-package="com.daoan"/>
<aop:aspectj-autoproxy/> </beans>
<!-- 如果这里写
<aop:aspectj-autoproxy/>
没有提示需要引入相关的xsd文件 -->
查找Spring-aop-2.5.xsd(C:\\spring-framework-2.5.6-with-dependencies\\spring-framework-2.5.6\\dist\\resources)
key:http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
写一个逻辑来测试
需要引入相应的jar
package com.daoan.aop;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.springframework.stereotype.Component;
@Aspect
@Component
public class LogIntercetor {
//(在save()方法执行之前先执行before()方法,如果需要把该逻辑织入到某个类的某个方法上,那个对象必须是spring管理起来的)
@Before("execution(public void com.daoan.dao.impl.UserDAOImpl.save(com.daoan.model.User))")
public void before() {
System.out.println("method start");
}
}
前进固然艰难,且代价惨重,而退回去舒服,却要吞咽人生致命的毒药!
遇到问题不能想着逃,如果总是逃避,那将永远都是你的问题,永远无法解答!
以上是关于Spring(使用Annotation方式的AOP)的主要内容,如果未能解决你的问题,请参考以下文章