TreeMind树图在线AI思维导图
当前位置:树图思维导图模板IT互联网互联网干货JavaSpring-Bean的Scope思维导图

JavaSpring-Bean的Scope思维导图

  收藏
  分享
免费下载
免费使用文件
U913167374 浏览量:22022-11-25 17:20:20
已被使用0次
查看详情JavaSpring-Bean的Scope思维导图

讲述了JavaSpring:Spring容器如何新建Bean的实例

树图思维导图提供 JavaSpring-Bean的Scope 在线思维导图免费制作,点击“编辑”按钮,可对 JavaSpring-Bean的Scope  进行在线思维导图编辑,本思维导图属于思维导图模板主题,文件编号是:ca4a17ab58bf92715c8450dadce7a8bd

思维导图大纲

JavaSpring-Bean的Scope思维导图模板大纲

(1)编写Singleton的Bean。

@Service //1 public class DemoSingletonService { }

(2)编写Prototype的Bean。

@Service @Scope("prototype")//1 public class DemoPrototypeService { }

(3)配置类。

@Configuration @ComponentScan("com.wisely.highlight_spring4.ch2.scope") public class ScopeConfig { }

(4)运行。

public class Main { public static void main(String[] args) { AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(ScopeConfig.class); DemoSingletonService s1 = context.getBean(DemoSingletonService.class); DemoSingletonService s2 = context.getBean(DemoSingletonService.class); DemoPrototypeService p1 = context.getBean(DemoPrototypeService.class); DemoPrototypeService p2 = context.getBean(DemoPrototypeService.class); System.out.println("s1与s2是否相等:"+s1.equals(s2)); System.out.println("p1与p2是否相等:"+p1.equals(p2)); context.close(); } } s1与s2是否相:true p1与p2是否相:false

相关思维导图模板

904名中国成年人第三磨牙相关知识、态度、行为和病史的横断面调查思维导图

树图思维导图提供 904名中国成年人第三磨牙相关知识、态度、行为和病史的横断面调查 在线思维导图免费制作,点击“编辑”按钮,可对 904名中国成年人第三磨牙相关知识、态度、行为和病史的横断面调查  进行在线思维导图编辑,本思维导图属于思维导图模板主题,文件编号是:10b9a8a2dd2fb4593f8130ef16c320fc

9.战斗的基督教思维导图

树图思维导图提供 9.战斗的基督教 在线思维导图免费制作,点击“编辑”按钮,可对 9.战斗的基督教  进行在线思维导图编辑,本思维导图属于思维导图模板主题,文件编号是:33d168acd0cd9f767f809c7a5df86e3a