SpringによるAOPのサポート(JDKの動的エージェント実装AOPとCGLIB実装AOP)


1.ターゲットオブジェクトにインタフェースが実装されている場合、デフォルトではJDKの動的エージェントを用いてAOPを実装する
2、ターゲットオブジェクトがインタフェースを実現した場合、CGLIBを強制的に使用してAOPを実現できる
3、ターゲットオブジェクトがインタフェースを実現していない場合、CGLIBライブラリを採用しなければならない場合、springは自動的にJDKダイナミックエージェントとCGLIBの間で変換する
CGLIBを強制的に使用してAOPを実現するにはどうすればいいですか?
*CGLIBライブラリ、SPRING_を追加HOME/cglib/*.jar
*springプロファイルにを追加
JDKダイナミックエージェントとCGLIBバイトコード生成の違いは?
*JDK動的エージェントは、インタフェースを実装したクラスに対してのみエージェントを生成でき、クラスに対しては生成できません.
*CGLIBはクラス実装エージェントであり,主に指定されたクラスに対してサブクラスを生成し,その中を上書きする方法である.
  継承なので、クラスやメソッドはfinalと宣言しないほうがいいです.

<?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"
	     xmlns:tx="http://www.springframework.org/schema/tx"
	     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
 
	<aop:aspectj-autoproxy proxy-target-class="true"/>//    CGLIB  AOP
	
	<bean id="securityHandler" class="com.bjsxt.spring.SecurityHandler"/>           
	
	<bean id="userManager" class="com.bjsxt.spring.UserManagerImpl"/>
	
	<aop:config>
		<aop:aspect id="security" ref="securityHandler">
			<aop:pointcut id="allAddMethod" expression="execution(* add*(..))"/>
			<aop:before method="checkSecurity" pointcut-ref="allAddMethod"/>
		</aop:aspect>
	</aop:config>	
</beans>