第298天学习打卡(知识点回顾 springboot核心注解 spring bean的生命周期)

Posted doudoutj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第298天学习打卡(知识点回顾 springboot核心注解 spring bean的生命周期)相关的知识,希望对你有一定的参考价值。

知识点回顾

springboot的核心注解

@springbootApplication,它是Spring Boot的核心注解,主要包含以下三个注解

  • SpringBootConfiguration: 组合了@Configuration注解,实现配置文件的功能
  • @EnableAutoConfiguration:打开了自动配置的功能
  • @ComponentScan:spring 组件扫描

Spring bean的生命周期

  • 实例化Instantiation
  • 属性赋值 Populate
  • 初始化Initialization
  • 销毁Destruction

以上是关于第298天学习打卡(知识点回顾 springboot核心注解 spring bean的生命周期)的主要内容,如果未能解决你的问题,请参考以下文章

第298天学习打卡(知识点回顾 springboot核心注解 spring bean的生命周期)

第300天学习打卡(知识点回顾 hashmap如何实现线程安全)

第300天学习打卡(知识点回顾 hashmap如何实现线程安全)

第300天学习打卡(知识点回顾 hashmap如何实现线程安全)

第266天学习打卡(知识点回顾 springmvc支持的返回值)

第223天学习打卡(知识点回顾 线程池)