Spring入门案例(spring的入门程序详细过程)

  本篇文章为你整理了Spring入门案例(spring的入门程序详细过程)的详细内容,包含有spring入门经典 spring的入门程序详细过程 spring integration入门 spring 例子 Spring入门案例,希望能帮助你了解 Spring入门案例。

  

 dependencies 

 

   !-- 基于Maven依赖传递性,导入spring-context依赖即可导入当前所需所有jar包 --

   dependency

   groupId org.springframework /groupId

   artifactId spring-context /artifactId

   version 5.3.1 /version

   /dependency

   !-- junit测试 --

   dependency

   groupId junit /groupId

   artifactId junit /artifactId

   version 4.12 /version

   scope test /scope

   /dependency

   /dependencies

  

 

  
在Spring的配置文件中配置bean

  配置HelloWorld所对应的bean,即将HelloWorld的对象交给Spring的IOC容器管理。
 

  通过bean标签配置IOC容器所管理的bean。
 

  属性:

  id:设置bean的唯一标识

  class:设置bean所对应类型的全类名

  
配置Spring配置文件applicationContext.xml,并配置bean

  IOC容器对象ClassPathXmlApplicationContext读取配置文件,创建helloWorld对象

  部分内容来自 B站尚硅谷课程 。老师讲得很好,有兴趣的可以听听。

  以上就是Spring入门案例(spring的入门程序详细过程)的详细内容,想要了解更多 Spring入门案例的内容,请持续关注盛行IT软件开发工作室。

郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。

留言与评论(共有 条评论)
   
验证码: