前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >专栏 >Spring Bean Scopes: Bean 实例生成方式与生命周期

Spring Bean Scopes: Bean 实例生成方式与生命周期

作者头像
一个会写诗的程序员
发布2021-07-20 10:17:59
发布2021-07-20 10:17:59
4130
举报

The life cycle and visibility of Spring Bean.

6 types of scopes

singleton prototype request session application websocket

The last four scopes mentioned, request, session, application and websocket, are only available in a web-aware application.

使用例子

@Bean@Scope("singleton")publicPersonpersonSingleton(){ return new Person(); } @Service @Scope("prototype") public class SpecificationParserClickHouse implements SpecificationParser { @Resource FieldFeatureBuilder fieldFeatureBuilder; ListspecList; IQuerySpecification spec =null; ... }

参考资料

https://www.baeldung.com/spring-bean-scopes

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 6 types of scopes
  • 使用例子
  • 参考资料
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档