Spring_使用注解引入新功能

Posted 大梦几千秋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring_使用注解引入新功能相关的知识,希望对你有一定的参考价值。

人行犹可复,岁月难可追。

  Java并不是动态语言,类编译完成后,很难在为该类添加新的功能,但是利用被称为引入的AOP概念,我们可以利用切面为Spring Bean添加新的方法。

  使用@DeclareParents注解,将接口引入到Spring Bean中。

  @DeclareParents注解由三部分组成:

    1)value属性指定了哪种类型的bean要引入该接口。加号(+)表示是该类型的所有子类型,而不是该类型本身。

    2)defaultImpl属性指定了为引入功能提供实现的类。

    3)@DeclareParents注解所标注的静态属性指明了要引入的接口。

package chapter4.practice2;

import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.DeclareParents;

@Aspect
public class EnableFlyIntroducer {
    @DeclareParents(value="chapter4.practice2.People+",defaultImpl=ChinesePeople.class)
    public static EnableFly enableFly;
}
package chapter4.practice2;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableAspectJAutoProxy;

@Configuration
@ComponentScan
@EnableAspectJAutoProxy
public class PeopleConfg {
    
    @Bean
    public People people() {
        return new ChinesePeople();
    }
}

 

  Spring的自动代理机制将会获取到ChinesePeople bean的声明,当Spring发现一个bean使用了@Aspect注解时,Spring就会创建一个代理,然后将调用委托给被代理的bean或被引入的实现,这取决于调用的方法属于被代理的bean还是属于被引入的接口。

 

以上是关于Spring_使用注解引入新功能的主要内容,如果未能解决你的问题,请参考以下文章

Spring_在XML中通过切面引入新的功能

IOC——Spring的bean的管理(注解方式)

项目一众筹网07_01_SpringSecurity框架简介和用法SpringSecurity负责的是 权限验证Spring的注解模式maven引入Spring环境加入layUI环境

[刘阳Java]_Spring常用注解介绍_第6讲

spring笔记day-3

注解介绍