AspectJ学习之Introduction

Posted on 一 30 三月 2015 in Reading • Tagged with AspectJ

The AspectJ Programming Guide第一章的笔记

1. 四个constructs:pointcuts, advice, inter-type declarations and aspects

  • Pointcuts and advice dynamically affect program flow
  • inter-type declarations statically affects a program’s class hierarchy
  • and aspects encapsulate these new constructs.

A join point is a well-defined point in the program flow. A pointcut picks out ...

Continue reading