欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

springboot@Configuration注解

时间:2023-06-07

@Configuration 主要是用于springboot加载配置信息的一个类,它本身也是springboot的一个组件,下边通过代码,点击进去,可以看到它的源码:

@Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)@documented@Componentpublic @interface Configuration {@AliasFor(annotation = Component.class)String value() default "";boolean proxyBeanMethods() default true;}

可以看到,其中有两个属性value和proxyBeanMethods,下边使用代码,对@Configuration进行简单的介绍,首先是value:定义组件名称

import com.lixl.boot.bean.User;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;@Configuration("lixlConfig") // 告诉springboot这是一个配置类,命名为lixlConfigpublic class MyConfig {}


可以看到,此时输出的组件名称中,有我刚刚设置的配置文件名称,第二个是proxyBeanMethods,代理bean方法,可以看到源码中,设置的为boolean类型,默认为true,修改代码如下,我在配置文件类中,注册了一个user对象

import com.lixl.boot.bean.User;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;@Configuration(value="lixlConfig",proxyBeanMethods = false) // 修改proxyBeanMethods为falsepublic class MyConfig { @Bean("tom") public User user01(){ return new User("张三","18"); }}


在主运行方法中,获取创建的对象,可以看出,获取的两次,都是新的对象,说明在proxyBeanMethods=false情况下,并没有走spring代理对象管理,那么改成true再看看情况

import com.lixl.boot.bean.User;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;@Configuration(value="lixlConfig",proxyBeanMethods = true) // 设置proxyBeanMethods为truepublic class MyConfig { @Bean("tom") public User user01(){ return new User("张三","18"); }}


本次运行,获取两个user对象为同一个对象,说明在proxyBeanMethods为true的情况下,获取配置类中注册对象,会有spring单例代理。

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。