1. 程式人生 > >spring aop 004: 引介增強

spring aop 004: 引介增強

package com.thereisnospon.spring.demo.course.imp.c004_aop;

import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.DeclareParents;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import
org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.EnableAspectJAutoProxy; /** * 引介增強 */ public class T004_Aop_declare { public static class BookService { public void query() { System.out.println("query"); } } public
interface ILog { void log(); } public static class LogImpl implements ILog { @Override public void log() { System.out.println("log"); } } @Aspect public static class MyAspect { @DeclareParents(value = "com.thereisnospon.spring.demo.course.imp.c004_aop.T004_Aop_declare.BookService"
, defaultImpl = LogImpl.class ) public ILog iLog; } @Configuration @EnableAspectJAutoProxy(proxyTargetClass = true) public static class Config { @Bean public MyAspect myAspect() { return new MyAspect(); } @Bean LogImpl log() { return new LogImpl(); } @Bean BookService bookService() { return new BookService(); } } public static void main(String[] args) { ApplicationContext context = new AnnotationConfigApplicationContext(Config.class); BookService bookService = (BookService) context.getBean("bookService"); bookService.query(); ((ILog) bookService).log(); } }

相關推薦

spring aop 004: 引介增強

package com.thereisnospon.spring.demo.course.imp.c004_aop; import org.aspectj.lang.annotation.Aspect

Spring AOP中的增強器&切點&通知

類圖 增強器 切點 通知 在增強其中定義了切點Pointcut,通知父類Advice 關係: spring代理類實現了處理器,bean建立時解析增強器,增強器根據包含的切點和通知生成該bean的代理類 程式設計方式定義AOP

Spring中的引介增強

(spring 3.x企業應用開發 第6章例項)通過一個變數來開啟效能監視服務。代理類public interface Monitorable { void setMonitorActive(boolean active); }public class Controll

【例項】使用Spring AOP進行業務增強(通過註解的方式)

以下程式碼通過了編譯,可以直接執行(需要更改包名) 目的: 通過Spring AOP實現對service的transfer(轉賬)操作增加事務處理。 增強類MyAdvice package

Spring AOP introduction 類級別方法織入增強

shadow intercept cda 擴展 sha oss text 都是 tor 前面描述的幾種增強(Advice)都是在目標方法範圍內織入,而引介(Introduction)不同,直接在類級別上添加目標未實現的接口方法。在Spring中可以通過擴展Delegatin

spring aop定義增強時候報錯 Caused by: java.lang.IllegalArgumentException: Pointcut is not well-formed: expec

Caused by: java.lang.IllegalArgumentException: Pointcut is not well-formed: expecting ')' at character position 11 Caused by: java.lang.IllegalArg

Spring AOP增強小例子

[java]  view plain  copy public interface ISomeService  { 

spring aop 001 : 增強順序

package com.thereisnospon.spring.demo.course.imp.c004_aop; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annot

Spring 梳理 - AOP那些學術概念—通知、增強處理連線點(JoinPoint)切面(Aspect) Spring AOP那些學術概念—通知、增強處理連線點(JoinPoint)切面(Aspect)

  Spring  AOP那些學術概念—通知、增強處理連線點(JoinPoint)切面(Aspect)   1、我所知道的AOP 初看起來,上來就是一大堆的術語,而且還有個拉風的名字,面向切面程式設計,都說是OOP的一種有益補

Spring AOP 增強框架 Nepxion Matrix 詳解

概述 本篇來繼續介紹一款開源的 AOP 框架:Nepxion Matrix,該框架致力於對 Spring AOP 的擴充套件和增強,靈活而且易用。 Matrix 框架主要對 Spring 做了三個模組的擴充套件:Spring AutoProxy,Spring Registrar,Spring

Spring AOP @Aspect織入不生效,不執行前置增強織入@Before

想寫一個AOP,主要有2個用意,, 第一個用意是做後端的防表單重複提交的token驗證。 第二個用意是對後臺JSR303 Validator的校驗結果做一個統一處理,不想把對校驗結果的處理分散在每個controller方法中   @ResponseBody @Request

Spring-AOP配置切入點方式及配置各種型別增強

AOP(Aspect-Oriented Programming):面向切面程式設計 是一種通過預編譯方式和執行期動態代理實現在不修改原始碼的情況下給程式動態新增功能的技術 AOP相關jar包: spring-aop-4.2.5.RELEASE.jar a

spring引介增強定時器例項:無侵入式動態增強類功能

引介增強例項需求在前面我們已經提到了前置、後置、環繞、最終、異常等增強形式,它們的增強物件都是針對方法級別的,而引介增強,則是對類級別的增強,我們可以通過引介增強為目標類新增新的屬性和方法,更為誘人的是,這些新屬性或方法是可以根據我們業務邏輯需求而動態變化的。怎

從山丘錘王之死談Spring AOP中的引介(Introduction)

  引介(Introduction)是指在不更改原始碼的情況,給一個現有類增加屬性、方法,以及讓現有類實現其它介面或指定其它父類等,從而改變類的靜態結構。Spring AOP通過採代理加攔截器的方式來實現的,可以通過攔截器機制使一個實有類實現指定的介面。   在實際應用中可以使用DefaultIntrodu

spring AOP中的AfterThrowing增強處理不能完全處理異常

spring AOP中的AfterThrowing增強處理可以對目標方法的異常進行處理,但這種處理與直接使用catch捕捉處理異常的方式不同,catch捕捉意味著能完全處理異常,即只要catch塊本身不丟擲新的異常,則被處理的異常不會往上級呼叫者進一步傳播下去;但是如果

Spring學習(二十五)Spring AOP增強介紹

課程概要: Spring AOP的基本概念Spring AOP的增強型別Spring AOP的前置增強Spring AOP的後置增強Spring AOP的環繞增強Spring AOP的異常丟擲增強Sp

Spring AOP增強型別

增強型別 Spring支援5種類型的增強,按照增強在目標類方法的連線點位置,可以分為以下5類。 前置增強: 後置增強: 環繞增強: 異常丟擲增強: 前置增強 場景:實習服務生,對客戶的問候: 以上就是我們的業務類; 下面編寫我們的切面,實現類 測試類實現,採用Te

Spring AOP原始碼解析(二)獲取增強

一、方法入口 上一節中,Spring會建立兩個工廠來完成獲取增強方法的功能: AspectMetadata amd = new AspectMetadata(beanType, beanName); if (amd.getAjType().getPerClause()

Spring AOP 增強型別

前置增強           org.springframework.aop.BeforeAdvice  代表前置增強,因為spring只支援方法級的增強,所以MethodBeforeAdvice 是目前可用前置增強,表示在目標方法執行前實施增強。 後置增強           org.springfram

spring學習筆記(23)基於tx/aop配置切面增強事務

在上一篇文章中,我們使用了宣告式事務來配置事務,使事務配置從service邏輯處理中解耦出來。但它還存在一些缺點: 1. 我們只針對方法名的特定進行攔截,但無法利用方法簽名的其它資訊定位,如修飾符、返