Springの注釈を使ってAOPの例を実現します。


springはAOPの実現に対してとても良い支持を提供しました。次にSpringの注釈を使ってAOPを完成させて例を作ります。
まず、SpringのAOPコメント機能を使用するためには、次のようなパッケージを導入する必要があります。aspectjrt.jar,aspectjweaver.jar,cglib-nodep.jar.を書いてください。

package com.bird.service; 
 
public interface PersonServer { 
 
  public void save(String name); 
  public void update(String name, Integer id); 
  public String getPersonName(Integer id); 
   
} 

一つのインターフェースと実現クラス

package com.bird.service.impl; 
 
import com.bird.service.PersonServer; 
 
public class PersonServiceBean implements PersonServer{ 
   
  @Override 
  public void save(String name) { 
     
    System.out.println("  save  "); 
  // throw new RuntimeException(); 
  } 
 
  @Override 
  public void update(String name, Integer id) { 
     
    System.out.println("  update()  "); 
  } 
 
  @Override 
  public String getPersonName(Integer id) { 
     
    System.out.println("  getPersonName()  "); 
    return "xxx"; 
  } 
 
} 

ここではSpring注釈を使ってこのBenをブロックします。

package com.bird.service; 
 
import org.aspectj.lang.ProceedingJoinPoint; 
import org.aspectj.lang.annotation.After; 
import org.aspectj.lang.annotation.AfterReturning; 
import org.aspectj.lang.annotation.AfterThrowing; 
import org.aspectj.lang.annotation.Around; 
import org.aspectj.lang.annotation.Aspect; 
import org.aspectj.lang.annotation.Before; 
import org.aspectj.lang.annotation.Pointcut; 
 
/** 
 *    
 * @author Bird 
 * 
 */ 
@Aspect 
public class MyInterceptor { 
  @Pointcut("execution(* com.bird.service.impl.PersonServiceBean.*(..))") 
  private void anyMethod(){}//        
   
  @Before("anyMethod() && args(name)") 
  public void doAccessCheck(String name){ 
    System.out.println(name); 
    System.out.println("    "); 
  } 
   
  @AfterReturning("anyMethod()") 
  public void doAfter(){ 
    System.out.println("    "); 
  } 
   
  @After("anyMethod()") 
  public void after(){ 
    System.out.println("    "); 
  } 
   
  @AfterThrowing("anyMethod()") 
  public void doAfterThrow(){ 
    System.out.println("    "); 
  } 
   
  @Around("anyMethod()") 
  public Object doBasicProfiling(ProceedingJoinPoint pjp) throws Throwable{ 
    System.out.println("      "); 
    Object object = pjp.proceed();//      
    System.out.println("    "); 
    return object; 
  } 
} 

@Pointcut("execution(* com.bird.service.impl.PersonServiceBean.*(..))") 
この文は方法の切り込み点であり、executionは実行の意味であり、*は任意の戻り値を表し、次にパッケージ名を表します。*は下のすべてのサブパッケージを包むという意味です。(.)いろいろな方法を表す。そして以下の注釈は比較的簡単です。使い方の前と中には折り返しブロックがあります。そしてSpringの配置ファイルの中にBeanを配置し続けます。AOP名前空間を開く必要があります。

<?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: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/aop  
    http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"> 
     
    <aop:aspectj-autoproxy/> 
  <bean id="personServiceBean" class="com.bird.service.impl.PersonServiceBean"/> 
  <bean id="myInterceptor" class="com.bird.service.MyInterceptor"/> 
   
</beans> 

そしてJunnitテストを作成します。

package junit.test; 
 
import org.junit.Test; 
import org.springframework.context.ApplicationContext; 
import org.springframework.context.support.ClassPathXmlApplicationContext; 
 
import com.bird.service.PersonServer; 
 
public class SpringAOPTest { 
   
  @Test 
  public void inteceptorTest(){ 
    ApplicationContext ctx = new ClassPathXmlApplicationContext("beanAop.xml"); 
    PersonServer bean = (PersonServer)ctx.getBean("personServiceBean"); 
    bean.save(null); 
  } 
   
 
} 

テスト結果は

2012-3-12 18:08:39 org.springframework.context.support.AbstractApplicationContext prepareRefresh 
  : Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@dd20f6: display name [org.springframework.context.support.ClassPathXmlApplicationContext@dd20f6]; startup date [Mon Mar 12 18:08:39 CST 2012]; root of context hierarchy 
2012-3-12 18:08:40 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions 
  : Loading XML bean definitions from class path resource [beanAop.xml] 
2012-3-12 18:08:40 org.springframework.context.support.AbstractApplicationContext obtainFreshBeanFactory 
  : Bean factory for application context [org.springframework.context.support.ClassPathXmlApplicationContext@dd20f6]: org.springframework.beans.factory.support.DefaultListableBeanFactory@b0bad7 
2012-3-12 18:08:40 org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons 
  : Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@b0bad7: defining beans [org.springframework.aop.config.internalAutoProxyCreator,personServiceBean,myInterceptor]; root of factory hierarchy 
null 
     
       
  save   
     
     
     
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。