0


Spring Bean生命周期

Spring Bean生命周期

💖The Begin💖点点关注,收藏不迷路💖

#mermaid-svg-ohaq48dlLBd94liT {font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#333;}#mermaid-svg-ohaq48dlLBd94liT .error-icon{fill:#552222;}#mermaid-svg-ohaq48dlLBd94liT .error-text{fill:#552222;stroke:#552222;}#mermaid-svg-ohaq48dlLBd94liT .edge-thickness-normal{stroke-width:2px;}#mermaid-svg-ohaq48dlLBd94liT .edge-thickness-thick{stroke-width:3.5px;}#mermaid-svg-ohaq48dlLBd94liT .edge-pattern-solid{stroke-dasharray:0;}#mermaid-svg-ohaq48dlLBd94liT .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-svg-ohaq48dlLBd94liT .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-svg-ohaq48dlLBd94liT .marker{fill:#333333;stroke:#333333;}#mermaid-svg-ohaq48dlLBd94liT .marker.cross{stroke:#333333;}#mermaid-svg-ohaq48dlLBd94liT svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;}#mermaid-svg-ohaq48dlLBd94liT .label{font-family:"trebuchet ms",verdana,arial,sans-serif;color:#333;}#mermaid-svg-ohaq48dlLBd94liT .cluster-label text{fill:#333;}#mermaid-svg-ohaq48dlLBd94liT .cluster-label span{color:#333;}#mermaid-svg-ohaq48dlLBd94liT .label text,#mermaid-svg-ohaq48dlLBd94liT span{fill:#333;color:#333;}#mermaid-svg-ohaq48dlLBd94liT .node rect,#mermaid-svg-ohaq48dlLBd94liT .node circle,#mermaid-svg-ohaq48dlLBd94liT .node ellipse,#mermaid-svg-ohaq48dlLBd94liT .node polygon,#mermaid-svg-ohaq48dlLBd94liT .node path{fill:#ECECFF;stroke:#9370DB;stroke-width:1px;}#mermaid-svg-ohaq48dlLBd94liT .node .label{text-align:center;}#mermaid-svg-ohaq48dlLBd94liT .node.clickable{cursor:pointer;}#mermaid-svg-ohaq48dlLBd94liT .arrowheadPath{fill:#333333;}#mermaid-svg-ohaq48dlLBd94liT .edgePath .path{stroke:#333333;stroke-width:2.0px;}#mermaid-svg-ohaq48dlLBd94liT .flowchart-link{stroke:#333333;fill:none;}#mermaid-svg-ohaq48dlLBd94liT .edgeLabel{background-color:#e8e8e8;text-align:center;}#mermaid-svg-ohaq48dlLBd94liT .edgeLabel rect{opacity:0.5;background-color:#e8e8e8;fill:#e8e8e8;}#mermaid-svg-ohaq48dlLBd94liT .cluster rect{fill:#ffffde;stroke:#aaaa33;stroke-width:1px;}#mermaid-svg-ohaq48dlLBd94liT .cluster text{fill:#333;}#mermaid-svg-ohaq48dlLBd94liT .cluster span{color:#333;}#mermaid-svg-ohaq48dlLBd94liT div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:12px;background:hsl(80, 100%, 96.2745098039%);border:1px solid #aaaa33;border-radius:2px;pointer-events:none;z-index:100;}#mermaid-svg-ohaq48dlLBd94liT :root{--mermaid-font-family:"trebuchet ms",verdana,arial,sans-serif;}
BeanPostProcessor.postProcessBeforeInitialization

自定义的init方法

InitializingBean.afterPropertiesSet

BeanPostProcessor.postProcessAfterInitialization

DisposableBean.destroy

配置的destroy-method

       实例化 
     

       依赖注入 
     

       感知阶段 
     

       BeanNameAware 
     

       BeanFactoryAware 
     

       前处理 
     

       初始化 
     

       Bean准备就绪 
     

       后处理 
     

       使用 
     

       销毁 
     

       资源清理 
     

Spring Bean的生命周期包括以下几个主要阶段:

  1. 实例化- 根据配置创建Bean实例。
  2. 依赖注入- 为Bean的属性注入依赖。
  3. 感知阶段- BeanNameAware:设置Bean的名称。- BeanFactoryAware:提供对容器自身的访问。
  4. 前处理- BeanPostProcessor的postProcessBeforeInitialization方法调用,为Bean的进一步处理提供机会。
  5. 初始化- 自定义的init方法:通过配置指定的方法。- InitializingBean接口afterPropertiesSet方法调用,完成Bean的初始化工作。
  6. 后处理- BeanPostProcessor的postProcessAfterInitialization方法调用,为Bean的最终处理提供机会。
  7. 使用- Bean准备就绪,供应用中的其他部分使用。
  8. 销毁- DisposableBean接口destroy方法调用,用于清理资源。- 配置的destroy-method:通过配置指定的销毁方法调用。

这些阶段共同构成了Spring Bean从创建到销毁的完整生命周期。

在这里插入图片描述

💖The End💖点点关注,收藏不迷路💖


本文转载自: https://blog.csdn.net/qq_41840843/article/details/140386918
版权归原作者 Seal^_^ 所有, 如有侵权,请联系我们删除。

“Spring Bean生命周期”的评论:

还没有评论