• @Bean 的用法


    @Bean是一个方法级别上的注解,主要用在@Configuration注解的类里,也可以用在@Component注解的类里。添加的bean的id为方法名。

    定义bean

    下面是@Configuration里的一个例子:

    @Configuration
    public class Config {
    
        @Bean
        public User user(){
            return  new User();
        }
    }

    这个配置就等同于之前在xml里的配置:

    <beans>
        <bean id="user" class="com.redisUtil.model.User"/>
    </beans>

    bean的依赖

    @bean 也可以依赖其他任意数量的bean,如果User依赖 Person,我们可以通过方法参数实现这个依赖:

    @Configuration
    public class Config {
    
        @Bean
        public User user(Person person){
            return  new User(person);
        }
    
        @Bean
        public Person person(){
            return new Person();
        }
    }

    如果Person没有注入的话那么

    public User user(Person person)

    这一段代码会提示无法注入person,这就相当于xml中的注入时的<property>。

    接受生命周期的回调

    任何使用@Bean定义的bean,也可以执行生命周期的回调函数,类似@PostConstruct and @PreDestroy的方法。用法如下:

    public class User implements Serializable{
    
        public void init(){
            System.out.println("User的初始化方法");
        }
        public void destroy(){
            System.out.println("User的销毁化方法");
        }
        .....
    @Configuration
    public class Config {
    
        @Bean(initMethod = "init",destroyMethod = "destroy")
        public User user(){
            return  new User();
        }
    }

    默认使用javaConfig配置的bean,如果存在close或者shutdown方法,则在bean销毁时会自动执行该方法,如果你不想执行该方法,则添加@Bean(destroyMethod="")来防止出发销毁方法。

    指定bean的scope

    使用@Scope注解

    你能够使用@Scope注解来指定使用@Bean定义的bean:

    @Configuration
    public class Config {
    
        @Bean
        @Scope("prototype")
        public User user(){
            return  new User();
        }
    }

    自定义bean的命名

    默认情况下bean的名称和方法名称相同,你也可以使用name属性来指定:

    @Configuration
    public class Config {
    
        @Bean(name= "myUser")
        public User user(){
            return  new User();
        }
    }

    bean的别名

    bean的命名支持别名,使用方法如下:

    @Configuration
    public class Config {
    
        @Bean(name = {"myUser,myUser1,myUser2"})
        public User user(){
            return  new User();
        }
    }

    bean的描述

    有时候提供bean的详细信息也是很有用的,bean的描述可以使用 @Description来提供:

    @Configuration
    public class Config {
    
        @Bean
        @Description(value = "this is a test")
        public User user(){
            return  new User();
        }
    }
  • 相关阅读:
    HTML5 中的Nav元素详解
    Gevent中信号量的使用
    MemCache缓存multiget hole详解
    MemCache中的内存管理详解
    Php中的强制转换详解
    Python中类的特殊方法详解
    MemCache的LRU删除机制详解
    AngularJS事件绑定的使用详解
    Php数据类型之整型详解
    HTML基础知识
  • 原文地址:https://www.cnblogs.com/weiqihome/p/10861149.html
Copyright © 2020-2023  润新知