在Maven中加入以下以依赖:
[html]
view plain
copy
-
-
- org.springframework
- spring-aop
- 3.0.6.RELEASE
-
-
- org.springframework
- spring-aspects
- 3.0.6.RELEASE
-
-
- org.aspectj
- aspectjrt
- 1.6.11
-
-
- org.aspectj
- aspectjweaver
- 1.6.11
-
-
- cglib
- cglib
- 2.1_3
-
-
在spring-***.xml中加入spring支持,打开aop功能
[html]
view plain
copy
- 头文件声明 :
- xmlns:aop="http://www.springframework.org/schema/aop"
- http://www.springframework.org/schema/aop
- http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
-
-
-
-
-
-
- 或:
-
编写自定义注解。实现对方法所实现的功能进行描述,以便在通知中获取描述信息
[java]
view plain
copy
- /*
- * 校验签名合法性 自定义事务
- */
- @Target({ElementType.METHOD})
- @Retention(RetentionPolicy.RUNTIME)
- @Documented
- @Inherited
- public @interface SecureValid {
- String desc() default "身份和安全验证开始...";
- }
@Target 用于描述注解的使用范围(即:被描述的注解可以用在什么地方),其取值有:
取值
|
描述
|
CONSTRUCTOR
|
用于描述构造器。
|
FIELD
|
用于描述域。
|
LOCAL_VARIABLE
|
用于描述局部变量。
|
METHOD
|
用于描述方法。
|
PACKAGE
|
用于描述包。
|
PARAMETER
|
用于描述参数。
|
TYPE
|
用于描述类或接口(甚至 enum )。
|
@Retention 用于描述注解的生命周期(即:被描述的注解在什么范围内有效),其取值有:
取值
|
描述
|
SOURCE
|
在源文件中有效(即源文件保留)。
|
CLASS
|
在 class 文件中有效(即 class 保留)。
|
RUNTIME
|
在运行时有效(即运行时保留)。
|
@Documented 在默认的情况下javadoc命令不会将我们的annotation生成再doc中去的,所以使用该标记就是告诉jdk让它也将annotation生成到doc中去
@Inherited 比如有一个类A,在他上面有一个标记annotation,那么A的子类B是否不用再次标记annotation就可以继承得到呢,答案是肯定的
Annotation属性值 有以下三种: 基本类型、数组类型、枚举类型
1:基本串类型
public
@
interface
UserdefinedAnnotation { intvalue(); String name(); String address(); }使用:@UserdefinedAnnotation(value=123,name="wangwenjun",address="火星")
public
static
void
main(String[] args) { System.out.println("hello"); } }
如果一个annotation中只有一个属性名字叫value,我没在使用的时候可以给出属性名也可以省略。
public
@
interface
UserdefinedAnnotation {
int
value(); } 也可以写成如下的形式 Java代码 @UserdefinedAnnotation(123) 等同于@UserdefinedAnnotation(value=123)
public
static
void
main(String[] args) { System.out.println("hello"); }
2:数组类型 我们在自定义annotation中定义一个数组类型的属性,代码如下:
- public @interface UserdefinedAnnotation { int[] value(); } 使用: public class UseAnnotation { @UserdefinedAnnotation({123}) public static void main(String[] args) { System.out.println("hello"); } }
注意1:其中123外面的大括号是可以被省略的,因为只有一个元素,如果里面有一个以上的元素的话,花括号是不能被省略的哦。比如{123,234}。
注意2:其中属性名value我们在使用的时候进行了省略,那是因为他叫value,如果是其他名字我们就不可以进行省略了必须是@UserdefinedAnnotation(属性名={123,234})这样的格式。
3:枚举类型
public
enum
DateEnum { Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday } 然后在定义一个annotation
package
com.wangwenjun.annatation.userdefined;
public
@
interface
UserdefinedAnnotation { DateEnum week(); } 使用:
public
class
UseAnnotation { @UserdefinedAnnotation(week=DateEnum.Sunday)
public
static
void
main(String[] args) { System.out.println("hello"); } }
4:默认值
public
@
interface
UserdefinedAnnotation { String name()
default
"zhangsan"; } 使用:
public
class
UseAnnotation { @UserdefinedAnnotation()
public
static
void
main(String[] args) { System.out.println("hello"); } }
5:注意
Annotation是不可以继承其他接口的,这一点是需要进行注意,这也是annotation的一个规定吧。
Annotation也是存在包结构的,在使用的时候直接进行导入即可。
Annotation类型的类型只支持原声数据类型,枚举类型和Class类型的一维数组,其他的类型或者用户自定义的类都是不可以作为annotation的类型,我查看过文档并且进行过
测试
。