SpringIOC快速入门Demo

首先我们创建一个web工程,开发工具用的是eclipse

SpringIOC快速入门Demo_第1张图片

接着下一步SpringIOC快速入门Demo_第2张图片

创建好之后我们在接着导入相关的jia包

SpringIOC快速入门Demo_第3张图片

jia包导入之后接着我们在src下创建spring的核心配置文件applicationContext.xml


接着添加spring的约束

把上面的代码添加到xml文件中即可.看下面图!!!

SpringIOC快速入门Demo_第4张图片

配置文件有了.然后我们接着创建一个接口

SpringIOC快速入门Demo_第5张图片

下一步实现接口

SpringIOC快速入门Demo_第6张图片


SpringIOC快速入门Demo_第7张图片

接着我们实现原始的service

创建一个测试类IocText

SpringIOC快速入门Demo_第8张图片

这是原始使用service的代码...上述操作的代码耦合度高,不灵活..经过测试是没有问题的.接着.我们使用spring的ioc来编码..

首先在applicationContext.xml配置文件中配置一段代码..

SpringIOC快速入门Demo_第9张图片

接着我们继续在测试类中编写代码

SpringIOC快速入门Demo_第10张图片

这样就ok了...我运行报错了.

SpringIOC快速入门Demo_第11张图片

是因为缺少jia包造成的..需要在添加spring的相关依赖jia包

添加这2个jia包即可

SpringIOC快速入门Demo_第12张图片

到这里..入门就完成了.


总结spring使用步骤:

1.     在applicationContext.xml文件中配置bean

2.     创建一个AppliCationContext对象

ApplicationContext它是BeanFactory的一个子接口,我们在使用时使用的是AppliCationContext的实现类ClassPathXmlApplicationContext

 SpringIOC快速入门Demo_第13张图片

可以通过getBean(配置文件中id名称)来获取指定的对象。

写的不好的地方,可以在下方评论指出,我会多加改善!!

你可能感兴趣的:(spring,springioc)