AOP中有几种Advice: BeforeAdvice,AfterAdvice,AroundAdvice,ThrowAdvice;
以下仅列出两种作为代表:(before,after两种)
接口:
public interface IHello {
public void hello(String name);
}
实现的类:
public class HelloSpeaker implements IHello {
@Override
public void hello(String name) {
// TODO Auto-generated method stub
System.out.println("Hello,"+name);
}
}
BeforeAdvice:
import java.lang.reflect.Method;
import java.util.logging.*;
import org.springframework.aop.MethodBeforeAdvice;
public class LogBeforeAdvice implements MethodBeforeAdvice{
private Logger logger=Logger.getLogger(this.getClass().getName());
public void before(Method method,Object[] args,Object target)throws Throwable
{
logger.log(Level.INFO,"method starts..."+method);
}
}
AfterAdvice:
import org.springframework.aop.AfterReturningAdvice;
import java.lang.reflect.Method;
import java.util.logging.*;
public class LogAfterAdvice implements AfterReturningAdvice{
private Logger logger=Logger.getLogger(this.getClass().getName());
public void afterReturning(Object object,Method method,Object[] args,
Object target)throws Throwable
{
logger.log(Level.INFO,"method ends..."+method);
}
}
配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
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-2.0.xsd">
<bean id="logBeforeAdvice" class="LogBeforeAdvice"></bean>
<bean id="logAfterAdvice" class="LogAfterAdvice"></bean>
<bean id="helloSpeaker" class="HelloSpeaker"></bean>
<bean id="helloProxy" class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="
proxyInterfaces" value="IHello"></property>
<property name="
target" ref="helloSpeaker"></property>
<property name="
interceptorNames">
<list>
<value>logBeforeAdvice</value>
<value>logAfterAdvice</value>
</list>
</property>
</bean>
</beans>
测试文件:
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");
IHello helloProxy=(IHello)context.getBean("helloProxy");
helloProxy.hello("Justin");
}
}
分享到:
相关推荐
标题中的"Spring学习笔记之一“why spring”"表明了这篇笔记主要探讨的是Spring框架的核心价值和使用背景。在IT行业中,Spring是一个广泛使用的Java企业级应用开发框架,它以其依赖注入(Dependency Injection,DI)...
Spring学习笔记...............345 第一章 Spring概述..........................345 第二章 Spring IOC(控制反转)........347 第三章 Spring AOP(面向切面编程)..........351 第四章 Spring中的数据访问.............
作者在杰普学习时的学习笔记,是J2ee初学者必备手册,是大家学习J2EE开发的很好的参考笔记。 Java/JavaEE 学习笔记 内容目录: Unix 学习笔记..........7 一、Unix前言............7 二、Unix基础知识....7 三、...
学习笔记可能是一位有经验的开发者或学习者记录下的心得和体会,包含了他们在研究jbpm过程中遇到的问题、解决方案,以及一些实用的技巧和建议。这些笔记对于初学者来说尤其有价值,因为他们可以从中借鉴他人的经验,...
【信息办公】凯撒java版SaaS OA协同办公软件 v2.0,是一款基于Java技术构建的高效能、可扩展的协同办公系统。SaaS(Software as a Service)模式是现代企业信息化的重要方向,它允许用户通过网络访问并使用软件服务...
Struts2的核心是基于WebWork框架,并且大量采用了拦截器技术,使得业务逻辑控制器能够更好地与Servlet API相分离。 **Struts2的特点**: - **灵活性**:Struts2支持多种类型的Action,包括普通的Java类。 - **可...
此外,它还与其他流行的技术栈,如 Spring、Java EE、Camunda 等良好集成,构建强大的企业级应用生态系统。 综上所述,Activiti 5.13 用户手册将详细介绍这些概念和使用方法,帮助开发者和业务分析师充分利用 ...
3. **Spring2.5-中文参考手册.chm**:Spring是一个全方位的Java企业级应用框架,支持依赖注入、AOP(面向切面编程)、数据访问、Web应用和测试。Spring 2.5的中文参考手册为开发者提供了详细的API信息,有助于理解...
BPMN 2.0则是一种用于业务流程建模的图形表示法,它提供了一套标准化的符号和结构,使得业务流程的设计更加直观和通用。 在实现过程中,前端可能会使用HTML5、CSS3和JavaScript等技术,结合AJAX进行异步数据交互,...
教材和参考资料包括《JSP 2.0应用教程》、《Tomcat与Web开发技术详解》、《Servlet/Jsp开发详解》和《JSP完全学习手册》等,同时,课程资源可在指定的FTP服务器上获取,包括课件、演示代码和运行环境。 课程考核...