码迷,mamicode.com
首页 > 其他好文 > 详细

@Enable*注解的原理

时间:2017-08-05 22:49:56      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:retention   ret   ace   bean   asp   异步   imp   time   new   

在SpringBoot中,我们很多的功能都能够通过@Enable*注解的方式来开启。

  @EnableAspectJAutoProxy开启对自动代理的支持。

  @EnableAsync开启异步方法的支持。

  @EnableConfigurationProperties开启对@ConfigurationPropertis注解配置Bean的支持。

通过Enable*一键开启对一项功能的支持,避免了自己配置大量的代码,也大大的降低了使用的难度。

我们通过观察@Enable*的这些注解,在所有的注解中都有一个@Import注解。

比如开启web MVC的配置支持:

@Retention(RetentionPolicy.RUNTIME)

@Target(ElementType.TYPE)

@Documented

@Import(DelegatingWebMvcConfiguration.class)

public @interface EnableWebMvc {

}

 @Import是用来导入配置类的

1,Import可以直接导入配置类。

 

@Target(ElementType.TYPE)

@Retention(RetentionPolicy.RUNTIME)

@Import(HelloConfig.class)

public @interface EnableHello {

 

}

 

public class HelloConfig {

        

         @Bean

         public  HelloImpl getHello(){

                   return new HelloImpl();

         }

 

}

这样bean对象就加入到我们的容器中了。

2,也可以动态的注册bean

@Target(ElementType.TYPE)

@Retention(RetentionPolicy.RUNTIME)

@Import(HelloImpl.class)

public @interface EnableHello {

 

}

所以@import导入配置类,其实是导入了一些自动配置的bean。@

@Enable*注解的原理

标签:retention   ret   ace   bean   asp   异步   imp   time   new   

原文地址:http://www.cnblogs.com/yimixiong/p/7291651.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!