博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring AOP之Introduction(@DeclareParents)简介
阅读量:4364 次
发布时间:2019-06-07

本文共 2688 字,大约阅读时间需要 8 分钟。

Spring的文档上对Introduction这个概念和相关的注解@DeclareParents作了如下介绍:

Introductions (known as inter-type declarations in AspectJ) enable an aspect to declare that advised objects implement a given interface, and to provide an implementation of that interface on behalf of those objects.
An introduction is made using the @DeclareParents annotation. This annotation is used to declare that matching types have a new parent (hence the name).
在这段介绍之后还给出了一个例子,对于初学者要理解这段话以及后面的例子还是蛮困难的,因此下面用一个简单的例子告诉大家什么是Introduction以及如何使用@DeclareParents注解。
对于Introduction这个词,个人认为理解成引入是最合适的,其目标是对于一个已有的类引入新的接口(有人可能会问:有什么用呢?简单的说,你可以把当前对象转型成另一个对象,那么很显然,你就可以调用另一个对象的方法了),看一个例子就全明白了。
假设已经有一个UserService类提供了保存User对象的服务,但是现在想增加对User进行验证的功能,只对通过验证的User提供保存服务,在不修改UserService类代码的前提下就可以通过Introduction来解决。
首先定义一个Verifier接口,里面定义了进行验证的方法validate(),如下所示:

package com.jackfrued.aop;import com.jackfrued.models.User;public interface Verifier {    public boolean validate(User user);}

 

接下来给出该接口的一个实现类BasicVerifier,如下所示:

package com.jackfrued.aop;import com.jackfrued.models.User;public class BasicVerifier implements Verifier {    @Override    public boolean validate(User user) {        if(user.getUsername().equals("jack") && user.getPassword().equals("1234")) {            return true;        }        return false;    }}

如何才能为UserService类增加验证User的功能呢,如下所示定义Aspect:

package com.jackfrued.aop;import org.aspectj.lang.annotation.Aspect;import org.aspectj.lang.annotation.DeclareParents;import org.springframework.stereotype.Component;@Aspect@Componentpublic class MyAspect {    @DeclareParents(value="com.tsinghuait.services.UserService",             defaultImpl=com.tsinghuait.aop.BasicVerifier.class)    public Verifier verifer;}

接下来就可以将UserService对象转型为Verifier对象并对用户进行验证了,如下所示:

package com.jackfrued.main;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;import com.jackfrued.aop.Verifier;import com.jackfrued.models.User;import com.jackfrued.services.Service;class Test {    public static void main(String[] args) {        User user1 = new User();        user1.setUsername("abc");        user1.setPassword("def");                ApplicationContext factory = new ClassPathXmlApplicationContext("config.xml");        Service s = (Service) factory.getBean("service");        Verifier v = (Verifier) s;        if(v.validate(user1) {            System.out.println("验证成功");            s.serve(user1);        }            }}

这样,上面代码中的user1是不会被服务的,当然是因为没有通过验证啦!

这样一说,是不是大概明白什么是Introduction了呢,其实@DeclareParents用起来也很简单吧!
至于配置文件和其他内容请参考完整源代码:

 

引自:http://www.blogjava.net/jackfrued/archive/2010/02/27/314060.html

 

转载于:https://www.cnblogs.com/powerwu/articles/5170861.html

你可能感兴趣的文章
mustache多次渲染和多个赋值
查看>>
Web 前端开发精华文章推荐(HTML5、CSS3、jQuery)【系列二十三】
查看>>
linux-nohup命令
查看>>
[LeetCode OJ] Roman to Integer
查看>>
三次握手和四次挥手
查看>>
Redis的简单动态字符串实现
查看>>
putty network error:software caused connection abort
查看>>
存储过程 <3> 和函数的区别
查看>>
高级service之ipc ADIL用法
查看>>
Django框架-基础篇
查看>>
Leetcode: Binary Tree Maximum Path Sum
查看>>
通过虚拟环境创建并开始一个django
查看>>
关于 input[type="button"] , button
查看>>
Android ViewDragHelper全然解析 自己定义ViewGroup神器
查看>>
c++ 基础 const char* 转 char*
查看>>
JS-- 小细节--你悟到了什么?
查看>>
收款 借贷
查看>>
Gson关于抽象类的序列化与反序列化
查看>>
Java面向对象之类和对象
查看>>
Oracle数据库提权(dba权限执行系统命令)
查看>>