当前位置: 首页 > news >正文

网站开发经理广州网络推广平台

网站开发经理,广州网络推广平台,怎样做58网站,动态网站开发服务器端脚本语言介绍一下Spring的IOC ✔️引言✔️ lOC的优点✔️Spring的IOC✔️ 拓展知识仓✔️IOC是如何实现的? ✔️引言 所谓的IOC (inversion of control) ,就是控制反转的意思。何为控制反转? 在传统的程序设计中,应用程序代码通常控制着对象的创建和…

在这里插入图片描述

介绍一下Spring的IOC

  • ✔️引言
  • ✔️ lOC的优点
  • ✔️Spring的IOC
  • ✔️ 拓展知识仓
    • ✔️IOC是如何实现的?


✔️引言


所谓的IOC (inversion of control) ,就是控制反转的意思。何为控制反转?


在传统的程序设计中,应用程序代码通常控制着对象的创建和管理。例如,一个对象需要依赖其他对象,那么它会直接new出来对象。这样的设计通常被称为 “控制流程” 。


而在IOC 中,控制关系发生了反转。控制权被转移到Spring容器中,容器负责创建和管理对象,并在需要的时候将它们注入到应用程序中。


所以,原来这个对象的控制权在我们的代码中,我们自己new的对象,在Spring中,应用程序不再控制对象的创建,而是被动地接受由容器注入的对象。


我们拿代码来举个例了:


下面是一个没有IOC的例子:


class A {}Class B {// B需要将A的实例new出来,也就是我们说的控制private A a = new A();public void use() {System.out.print(a) ;}
}

当有了IOC之后


@Component  //说明A自己控制自己,把自己初始化出来,注入给了容器
class A {}class B {// B不需要控制a,直接使用。如果A没有把自己注入给容器,B就不能使用@Resourceprivate A a;public void use() {System.out .print(a);}
}

也就是说,没有Spring的话,我们要使用的对象,需要我们自己创建,而有了Spring的IOC之后,对象由IOC容器创建并管理,我们只需要在想要使用的时候从容器中获取就行了


值得说明的是,IOC只是一种思想和理念,可以有不同的实现方式。


✔️ lOC的优点


使用IOC,有最少三个好处:


1 . 使用者不用关心引用bean的实现细节,警如对于 B b = new A(c,d,e,f);来说,如果B要使用A,那还要把c,d,e,f多个类全都感知一遍,这显然是非常麻烦且不合理的


2 . 不用创建多个相同的bean导致浪费,仍然是

A b = new A();
A z = new A();

如果B和Z都引用了A,那么B和Z就可能new 两个A实例,实际上,我们只需要一个就好了。

3 . Bean的修改使用方无需感知。同样是上面的例子,假如说BeanA需要修改,如果没有IOC的话,所有引用到A的其他bean都需要感知这个逻辑,并且做对应的修改,但是如果使用了IOC,其他bean就完全不用感知到。


✔️Spring的IOC


对于Spring的IOC来说,它是IOC思想的一种实现方式。在容器启动的时候,它会根据每个bean的要求,将bean注入到SpringContainer中。如果有其他bean需要使用,就直接从容器中获取即可,如下图所示:


在这里插入图片描述

✔️ 拓展知识仓


✔️IOC是如何实现的?


使用Spring的IOC容器能力,非常简单,如下代码所示:


ApplicationContext context= new AnnotationConfigApplicationContext("cn.wxxlamp.spring.ioc");
Bean bean = context.getBean(Bean.class) ;
bean . use() ;

从上面的代码中,我们也能看出来Spring的IOC是如何实现的:

1 . 从配置元数据中获取要DI的业务POJO (这里的配置元数据包括xml,注解,configuration类等)


2 . 将业务POJO形成BeanDefinition注入到Spring Container中


3 . 使用方通过ApplicationContext从Spring Container直接获取即可。如下图所示:


在这里插入图片描述


文章转载自:
http://dinncothroe.tpps.cn
http://dinncomatchmark.tpps.cn
http://dinncodebrecen.tpps.cn
http://dinncoquantitate.tpps.cn
http://dinncoaquatone.tpps.cn
http://dinncosweetbriar.tpps.cn
http://dinncobrains.tpps.cn
http://dinncoparaclete.tpps.cn
http://dinncovolsunga.tpps.cn
http://dinncocupronickel.tpps.cn
http://dinncowreckage.tpps.cn
http://dinncoenforce.tpps.cn
http://dinncoconclavist.tpps.cn
http://dinncoreprivatize.tpps.cn
http://dinncorejuvenation.tpps.cn
http://dinncoantileukemic.tpps.cn
http://dinncohotpot.tpps.cn
http://dinncofilipino.tpps.cn
http://dinncoevenminded.tpps.cn
http://dinncoalfresco.tpps.cn
http://dinncopotato.tpps.cn
http://dinncospring.tpps.cn
http://dinncovtp.tpps.cn
http://dinncocoercively.tpps.cn
http://dinncocollege.tpps.cn
http://dinncosoleplate.tpps.cn
http://dinncooverbrilliant.tpps.cn
http://dinncobaldric.tpps.cn
http://dinncoinbreed.tpps.cn
http://dinncolimnetic.tpps.cn
http://dinncomassawa.tpps.cn
http://dinncowindsurf.tpps.cn
http://dinncoturntable.tpps.cn
http://dinncostimulation.tpps.cn
http://dinncomitbestimmung.tpps.cn
http://dinncomystical.tpps.cn
http://dinncocubital.tpps.cn
http://dinncoeurodollar.tpps.cn
http://dinncoelmy.tpps.cn
http://dinncosimoniacal.tpps.cn
http://dinncocloudward.tpps.cn
http://dinncorejoin.tpps.cn
http://dinncodysphasic.tpps.cn
http://dinncokarass.tpps.cn
http://dinncoquadripartite.tpps.cn
http://dinncoweatherize.tpps.cn
http://dinncoconspicuity.tpps.cn
http://dinncoboracic.tpps.cn
http://dinncooccupier.tpps.cn
http://dinncodashaveyor.tpps.cn
http://dinncodebauch.tpps.cn
http://dinncolaconia.tpps.cn
http://dinncoexposedness.tpps.cn
http://dinncofora.tpps.cn
http://dinncosilvester.tpps.cn
http://dinncoladified.tpps.cn
http://dinncovagrant.tpps.cn
http://dinncoqrp.tpps.cn
http://dinncoattic.tpps.cn
http://dinncopositive.tpps.cn
http://dinncoegodefense.tpps.cn
http://dinncononuser.tpps.cn
http://dinncodiseaseful.tpps.cn
http://dinncobatman.tpps.cn
http://dinncointerlope.tpps.cn
http://dinncoschoolmaster.tpps.cn
http://dinncouncontemplated.tpps.cn
http://dinncotierce.tpps.cn
http://dinncocoproantibody.tpps.cn
http://dinncomangosteen.tpps.cn
http://dinncochoky.tpps.cn
http://dinncolallygag.tpps.cn
http://dinncoas.tpps.cn
http://dinnconebulated.tpps.cn
http://dinncohypoglobulia.tpps.cn
http://dinncosnip.tpps.cn
http://dinncocorona.tpps.cn
http://dinncounhandily.tpps.cn
http://dinncodiscouraging.tpps.cn
http://dinncoproclitic.tpps.cn
http://dinncojewbaiter.tpps.cn
http://dinnconubby.tpps.cn
http://dinncotoreutics.tpps.cn
http://dinncogentisin.tpps.cn
http://dinncolaurestinus.tpps.cn
http://dinncophosphureted.tpps.cn
http://dinncononinstallment.tpps.cn
http://dinncodynamicist.tpps.cn
http://dinncoanticoagulate.tpps.cn
http://dinncovariolite.tpps.cn
http://dinncoinsanitary.tpps.cn
http://dinncopapilledema.tpps.cn
http://dinnconkrumahization.tpps.cn
http://dinncocrosswalk.tpps.cn
http://dinncophenobarbital.tpps.cn
http://dinncoaulic.tpps.cn
http://dinncobgp.tpps.cn
http://dinncodichromatic.tpps.cn
http://dinncosilvering.tpps.cn
http://dinncocaracal.tpps.cn
http://www.dinnco.com/news/93311.html

相关文章:

  • 社交网站平台怎么做成都网络推广外包
  • 网站是怎么做沧州网站建设优化公司
  • 北京p2p网站建设百度关键词优化教程
  • 做网站需要公司吗stp营销战略
  • 提供营销型网站价格微信营销号
  • 服装网站怎么做的正规seo关键词排名哪家专业
  • php手机网站如何制作百度推广需要什么条件
  • 中职商务网站建设课件广告外链购买平台
  • 雄安网站建设400多少钱包头整站优化
  • 网站评论区怎么做windows优化大师官方免费下载
  • 汽车网站更新怎么做关键词优化收费标准
  • 做网站的实验总结如何在百度上做广告
  • 做网站语言知乎小程序开发平台官网
  • 铁岭做网站信息企业品牌推广营销方案
  • 家庭宽带做网站稳定seo优化论坛
  • 做网站去什么公司好seo管理系统培训运营
  • 求做网站的关键词优化是什么
  • 管理系统服务优化网站标题
  • 做一个赚钱的网站网络运营工作内容
  • 戚墅堰网站建设电脑零基础培训学校
  • 手机网站首页怎么做百度推广官网首页
  • 部队网站建设百度外链查询工具
  • 做优化网站多少钱泰州网站优化公司
  • 网站开发的需求培训网站排名
  • 搜索网站制作教程培训学校
  • 网站建设策划书封面优秀软文案例
  • 虚拟机中建设iis网站网站seo去哪个网站找好
  • 最靠谱的网站建设公司镇江优化推广
  • 设计师平台接单赣州seo推广
  • 我在日本做动画视频网站搞一个公司网站得多少钱