其他分享
首页 > 其他分享> > SpringBoot中的容器功能

SpringBoot中的容器功能

作者:互联网

2.1组件添加

1.@Configuration

基本使用

Full模式与Lite模式:配置类组件之间无依赖关系用Lite模式加速容器启动过程,减少判断;
                                配置类组件之间有依赖关系,方法会被调用得到之前单实例组件,用Full模式。

2.@Bean、@Component、@Controller、@Service、@Repository

3.@ComponentScan、@Import

4.@Conditional

条件装配:满足Conditional指定的条件,则进行组件注入

 

标签:容器,功能,Full,SpringBoot,Conditional,模式,Lite,组件
来源: https://www.cnblogs.com/nzpdbk/p/16683917.html