Spring之IoC详解
文章大纲
一、spring介绍
二、spring的ioc实战
三、ioc常见注解总结
四、项目源码及参考资料下载
五、参考文章
一、spring介绍
1. 什么是spring
spring是分层的java se/ee应用 full-stack轻量级开源框架,以ioc(inverse of control:反转控制)和aop(aspect oriented programming:面向切面编程)为内核,提供了展现层spring mvc和持久层spring jdbc以及业务层事务管理等众多的企业级应用技术,还能整合开源世界众多著名的第三方框架和类库,逐渐成为使用最多的java ee企业应用开源框架。
2. spring优势
方便解耦,简化开发
通过spring提供的ioc容器,可以将对象间的依赖关系交由spring进行控制,避免硬编码所造成的过度程序耦合。用户也不必再为单例模式类、属性文件解析等这些很底层的需求编写代码,可以更专注于上层的应用。
aop编程的支持
通过spring的aop功能,方便进行面向切面的编程,许多不容易用传统oop(面向对象的程序设计)实现的功能可以通过aop轻松应付。
声明式事务的支持
可以将我们从单调烦闷的事务管理代码中解脱出来,通过声明式方式灵活的进行事务的管理,提高开发效率和质量。
方便程序的测试
可以用非容器依赖的编程方式进行几乎所有的测试工作,测试不再是昂贵的操作,而是随手可做的事情。
方便集成各种优秀框架
spring可以降低各种框架的使用难度,提供了对各种优秀框架(struts、hibernate、hessian、quartz等)的直接支持。
降低javaee api的使用难度
spring对javaee api(如jdbc、javamail、远程调用等)进行了薄薄的封装层,使这些api的使用难度大为降低。
3. spring的体系结构
二、spring的ioc实战
控制反转(inversion of control,缩写为ioc),是面向对象编程中的一种设计原则,可以用来减低计算机代码之间的耦合度。其中最常见的方式叫做依赖注入(dependency injection,简称di),还有一种方式叫“依赖查找”(dependency lookup)。通过控制反转,对象在被创建的时候,由一个调控系统内所有对象的外界实体将其所依赖的对象的引用传递给它。也可以说,依赖被注入到对象中。
ioc有两种实现方式,一种是配置文件(bean管理)方式,具体包括使用类的无参数构造方法(重点)、使用静态工厂创建、使用实例工厂创建。第二种是注解方式。
1. 创建项目
2. 添加jar包(实际开发中使用maven)
将jar包复制到以下文件夹中
设置依赖
具体方式可参考博客中地址:https://zyjustin9.iteye.com/blog/2172445
3. 配置文件(bean管理)方式实现
方式一:使用id配置方法--常用(重要)
创建测试类user.java
public class user { public void add() { system.out.println("add......."); } public void add(string haha) { system.out.println("add.."+haha); } }
src下创建配置文件myxml.xml
<?xml version="1.0" encoding="utf-8"?> <!-- 这些都是写死方法 --> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd" > <!-- 本来在该配置文件中还有一个属性name,其作用和id一样,id属性值不能包含特殊符号(比如@#),但是name属性可以,不过name属性是很早版本时候使用的,现在都被替换成id了 scope属性,总共有以下的值,但是最主要用的是前两个,后面两个不用记得,在该配置文件中我们没有写scope属性,默认使用的是singleton singleton:默认值、单例的 prototype:多例的: request:创建对象,把对象放在request域里面 session:创建对象,把对象放在session域里面 globalsession:创建对象,把对象放在globalsession域里面 --> <!-- 第一种方法:ioc的配置文件 id是类的标志 class是对象类全路径--> <bean id="user" class="ioc1.user" scope="singleton"/> </beans>
编写测试代码
/** * 测试配置方式实现ioc三种方法 * * @author 吴晓畅 * */ public class testioc { @test public void testuser() { //加载spring配置文件,根据内容创建对象 applicationcontext context = new classpathxmlapplicationcontext("myxml.xml"); //方法1 :使用id配置方法--常用 user user = (user) context.getbean("user"); system.out.println(user); user.add("尼玛"); } }
运行结果如下:
方式二:静态工厂(了解就好)
创建测试类user2.java
package ioc2; public class user2 { public void add() { system.out.println("user2........"); } }
创建测试工厂类user2factory.java
package ioc2; public class user2factory { public static user2 getuser2() { return new user2(); } }
src下创建配置文件myxml.xml
<?xml version="1.0" encoding="utf-8"?> <!-- 这些都是写死方法 --> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd" > <!-- 本来在该配置文件中还有一个属性name,其作用和id一样,id属性值不能包含特殊符号(比如@#),但是name属性可以,不过name属性是很早版本时候使用的,现在都被替换成id了 scope属性,总共有以下的值,但是最主要用的是前两个,后面两个不用记得,在该配置文件中我们没有写scope属性,默认使用的是singleton singleton:默认值、单例的 prototype:多例的: request:创建对象,把对象放在request域里面 session:创建对象,把对象放在session域里面 globalsession:创建对象,把对象放在globalsession域里面 --> <!-- 第二种方法:使用静态工厂创建对象 --> <bean id="user2" class="ioc2.user2factory" factory-method="getuser2"/> </beans>
测试代码如下:
package introduction; import ioc1.user; import ioc2.user2; import ioc3.user3; import org.junit.test; import org.springframework.context.applicationcontext; import org.springframework.context.support.classpathxmlapplicationcontext; /** * 测试配置方式实现ioc三种方法 * * @author 吴晓畅 * */ public class testioc { @test public void testuser() { //加载spring配置文件,根据内容创建对象 applicationcontext context = new classpathxmlapplicationcontext("myxml.xml"); //方法2:使用静态工厂方法--了解就好 user2 user2 = (user2) context.getbean("user2"); system.out.println(user2); } }
运行结果如下:
方式三:实例工厂(了解就好)
创建测试类user3.java
package ioc3; public class user3 { public void add() { system.out.println("user3........"); } }
创建测试工厂类user3factory.java
package ioc3; public class user3factory { //普通方法,返回user3对象 public user3 getuser3() { return new user3(); } }
src下创建配置文件myxml.xml
<?xml version="1.0" encoding="utf-8"?> <!-- 这些都是写死方法 --> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd" > <!-- 本来在该配置文件中还有一个属性name,其作用和id一样,id属性值不能包含特殊符号(比如@#),但是name属性可以,不过name属性是很早版本时候使用的,现在都被替换成id了 scope属性,总共有以下的值,但是最主要用的是前两个,后面两个不用记得,在该配置文件中我们没有写scope属性,默认使用的是singleton singleton:默认值、单例的 prototype:多例的: request:创建对象,把对象放在request域里面 session:创建对象,把对象放在session域里面 globalsession:创建对象,把对象放在globalsession域里面 --> <!-- 第三种方法:使用实例工厂创建对象 --> <!-- 创建工厂类的对象 --> <bean id="user3factory" class="ioc3.user3factory"></bean> <bean id="user3" factory-bean="user3factory" factory-method="getuser3"></bean> </beans>
测试代码如下:
package introduction; import ioc3.user3; import org.junit.test; import org.springframework.context.applicationcontext; import org.springframework.context.support.classpathxmlapplicationcontext; /** * 测试配置方式实现ioc三种方法 * * @author 吴晓畅 * */ public class testioc { @test public void testuser() { //加载spring配置文件,根据内容创建对象 applicationcontext context = new classpathxmlapplicationcontext("myxml.xml"); //方法3:使用实例工厂创建对象--了解就好 user3 user3 = (user3) context.getbean("user3"); system.out.println(user3); } }
运行结果如下:
4. 注解方式实现
方式一:实现对象创建
创建测试类:userbean1.java
/** * 采用注解方式完成ioc * * @author 吴晓畅 * */ //目前spring有四个注解,功能都是一样的,都是创建对象用的 //@component @controller @service @repository @component(value="userbean1")//这个相当于<bean id="user" class=""/> public class userbean1 { public void add() { system.out.println("userbean1....add"); } }
src下创建配置文件bean.xml
<?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemalocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <!-- bean definitions here --> <!-- 开启注解扫描 base-package写的包名 如果类在多个包里面,那么写的方式如下 ioc_bean1,ioc_bean2,ioc_bean3... 或者采用cn 这样表示加载cn开头的所有包 cn.ioc则表示加载 cn.ioc开头的所有包 --> <!-- 到包里面扫描类、方法、属性上面注解 --> <context:component-scan base-package="ioc_bean1"></context:component-scan> <!-- 只扫描属性上面的注解 --> <!--<context:annotation-config></context:annotation-config> --> </beans>
测试代码如下
package introduction; import org.junit.test; import org.springframework.context.applicationcontext; import org.springframework.context.support.classpathxmlapplicationcontext; import ioc_bean1.userbean1; import ioc_bean1.userservice;; /** * 测试bean方式使用ioc * * @author 吴晓畅 * */ public class testbean { @test public void testuser() { //加载spring配置文件,根据内容创建对象 applicationcontext context = new classpathxmlapplicationcontext("bean.xml"); //测试bean配置方式创建对象 userbean1 userbean1 = (userbean1) context.getbean("userbean1"); system.out.println(userbean1); userbean1.add(); } }
运行结果如下
方式二:bean配置方式注入对象属性
创建测试类:userdao.java
import org.springframework.stereotype.component; //这一步相当于创建了userdao对象 @component(value="userdao") public class userdao { public void add() { system.out.println("userdao....add"); } }
编写测试类userservice.java
package ioc_bean1; import javax.annotation.resource; import org.springframework.beans.factory.annotation.autowired; import org.springframework.stereotype.service; //@service(value="userservice")等同于@service("userservice") //这一步相当于创建了userservice对象 @service(value="userservice") public class userservice { //得到userdao对象 使用注解方式时候不需要使用set方法,直接到userdao对象上面使用注解,完成对象注入 //即@autowired用于注入属性 @autowired private userdao userdao; //这种方式与上面方式能达到同样效果 常用的是下面这种 //name的值要与userdao的注解的value一致 // @resource(name="userdao") // private userdao userdao; public void add() { system.out.println("userservice...add...."); userdao.add(); } }
src下配置方式与方式一一致
测试代码如下:
package introduction; import ioc_bean1.userbean1; import ioc_bean1.userservice; import org.junit.test; import org.springframework.context.applicationcontext; import org.springframework.context.support.classpathxmlapplicationcontext; ; /** * 测试bean方式使用ioc * * @author 吴晓畅 * */ public class testbean { @test public void testuser() { //加载spring配置文件,根据内容创建对象 applicationcontext context = new classpathxmlapplicationcontext("bean.xml"); //测试bean配置方式注入对象属性 userservice userservice = (userservice) context.getbean("userservice"); userservice.add(); } }
运行结果如下
温馨提示:
上面注解方式需要在使用类上面加上@component(value="userdao"),在对象变量上使用@autowired才能实现。
方式三:配置文件与注解方式混合使用
创建测试类bookdao.java
package ioc_bean2; public class bookdao { public void book() { system.out.println("bookdao....book"); } }
创建测试类orderdao.java
package ioc_bean2; public class orderdao { public void buy() { system.out.println("orderdao....buy"); } }
创建测试服务bookservice.java,在该服务中通过注解方式注入对象属性
package ioc_bean2; import javax.annotation.resource; public class bookservice { //得到bookdao和orderdao的对象 @resource(name="bookdao") private bookdao bookdao; @resource(name="orderdao") private orderdao orderdao; public void add() { system.out.println("service"); bookdao.book(); orderdao.buy(); } }
src下配置文件如下
<?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemalocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <!-- bean definitions here --> <!-- 开启注解扫描 base-package写的包名 如果类在多个包里面,那么写的方式如下 ioc_bean1,ioc_bean2,ioc_bean3... 或者采用cn 这样表示加载cn开头的所有包 cn.ioc则表示加载 cn.ioc开头的所有包 --> <!-- 到包里面扫描类、方法、属性上面注解 --> <context:component-scan base-package="ioc_bean2"></context:component-scan> <!-- 配置对象 --> <bean id="bookservice" class="ioc_bean2.bookservice"></bean> <bean id="bookdao" class="ioc_bean2.bookdao"></bean> <bean id="orderdao" class="ioc_bean2.orderdao"></bean> </beans>
测试代码如下
package ioc_bean2; import org.junit.test; import org.springframework.context.applicationcontext; import org.springframework.context.support.classpathxmlapplicationcontext; import ioc1.user; import ioc2.user2; import ioc3.user3; public class testmixbean { @test public void testservice() { //加载spring配置文件,根据内容创建对象 applicationcontext context = new classpathxmlapplicationcontext("bean2.xml"); bookservice bookservice = (bookservice) context.getbean("bookservice"); bookservice.add(); } }
运行结果如下
方式四:带参数的属性注入
创建数组、集合、properties属性注入测试类person.java
package property; import java.util.list; import java.util.map; import java.util.properties; /** * 测试数组、集合、properties属性注入 * * @author 吴晓畅 * */ public class person { private string pname; private string[] arrs; private list<string> list; private map<string, string> map; private properties properties; public void setpname(string pname) { this.pname = pname; } public void setarrs(string[] arrs) { this.arrs = arrs; } public void setlist(list<string> list) { this.list = list; } public void setmap(map<string, string> map) { this.map = map; } public void setproperties(properties properties) { this.properties = properties; } public void test1() { system.out.println("pname--"+pname); system.out.println("arrs--"+arrs); system.out.println("list--"+list); system.out.println("map--"+map); system.out.println("properties--"+properties); } }
创建构造方法注入属性测试类propertydemo1.java
package property; /** * 通过构造方法注入属性 * * @author 吴晓畅 * */ public class propertydemo1 { private string username; public propertydemo1(string username) { this.username = username; } public void test1() { system.out.println("demo1......"+username); } }
创建set方法注入属性测试类propertydemo2.java
package property; /** * 通过set方法注入属性 * * @author 吴晓畅 * */ public class propertydemo2 { private string bookname; //set方法 该方法一定要符合set/get方法命名规则 public void setbookname(string bookname) { this.bookname = bookname; } public void demobookname() { system.out.println("book..."+bookname); } }
对象属性注入测试类userdao.java
package property; /** * 对象属性注入 * * @author 吴晓畅 * */ public class userdao { public void add() { system.out.println("userdao.....dao"); } }
对象属性注入测试类userservice.java
package property; /** * 对象属性注入 * * @author 吴晓畅 * */ public class userservice { //定义userdao属性 private userdao dao; //定义set方法 public void setdao(userdao dao) { this.dao = dao; } public void add() { system.out.println("userservice...service"); //使用dao对象 dao.add(); } }
src下配置文件myxml.xml
<?xml version="1.0" encoding="utf-8"?> <!-- 这些都是写死方法 --> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd" > <!-- 本来在该配置文件中还有一个属性name,其作用和id一样,id属性值不能包含特殊符号(比如@#),但是name属性可以,不过name属性是很早版本时候使用的,现在都被替换成id了 scope属性,总共有以下的值,但是最主要用的是前两个,后面两个不用记得,在该配置文件中我们没有写scope属性,默认使用的是singleton singleton:默认值、单例的 prototype:多例的: request:创建对象,把对象放在request域里面 session:创建对象,把对象放在session域里面 globalsession:创建对象,把对象放在globalsession域里面 --> <!-- 使用有参数构造注入属性 --> <bean class="property.propertydemo1" id="demo"> <!-- 表示给username属性注入value为小王的值 --> <constructor-arg value="小王" name="username"> </constructor-arg> </bean> <!-- 使用set方法注入属性 --> <!--这一步相当于创建了 property.propertydemo2类的对象--> <bean class="property.propertydemo2" id="demo2"> <!-- 表示给username属性注入value为小王的值 --> <property value="易筋经" name="bookname"> </property> </bean> <!-- 注入对象类型的属性 --> <!-- 配置userservice和userdao的对象 --> <bean id="userdao" class="property.userdao"></bean> <bean id="userservice" class="property.userservice"> <!-- 注入dao对象 现在不要写value属性,因为上面是字符串,现在是对象,使用ref属性,dao配置bean标签中的id值--> <property name="dao" ref="userdao"></property> </bean> <!-- 注入复杂类型属性-》包括数组、集合等 --> <bean id="person" class="property.person"> <!-- 数组 --> <property name="arrs"> <list> <value>小王</value> <value>小马</value> <value>小宋</value> </list> </property> <!-- list集合 --> <property name="list"> <list> <value>小奥</value> <value>小金</value> <value>小普</value> </list> </property> <!-- map集合 --> <property name="map"> <map> <entry key="aa" value="lucy"></entry> <entry key="bb" value="mary"></entry> <entry key="cc" value="tom"></entry> </map> </property> <!-- properties --> <property name="properties"> <props> <prop key="driverclass">com.mysql.jdbc.driver</prop> <prop key="username">root</prop> </props> </property> </bean> </beans>
测试代码如下
package property; import org.junit.test; import org.springframework.context.applicationcontext; import org.springframework.context.support.classpathxmlapplicationcontext; /** * 测试属性注入 * * @author 吴晓畅 * */ public class testioc { @test public void textuser() { //加载spring配置文件,根据内容创建对象 applicationcontext context = new classpathxmlapplicationcontext("myxml.xml"); //测试构造注入属性的方法 //得到配置创建的对象 propertydemo1 demo1 = (propertydemo1)context.getbean("demo"); demo1.test1(); //测试set方法注入属性值 propertydemo2 demo2 = (propertydemo2)context.getbean("demo2"); demo2.demobookname(); //测试使用set方法注入对象属性 userservice userservice = (userservice) context.getbean("userservice"); userservice.add(); //使用set方法注入复杂属性对象 person person = (person) context.getbean("person"); person.test1(); } }
运行结果如下
log4j:warn no appenders could be found for logger (org.springframework.core.env.standardenvironment). log4j:warn please initialize the log4j system properly. demo1......小王 book...易筋经 userservice...service userdao.....dao pname--null arrs--[ljava.lang.string;@28ac3dc3 list--[小奥, 小金, 小普] map--{aa=lucy, bb=mary, cc=tom} properties--{driverclass=com.mysql.jdbc.driver, username=root} process finished with exit code 0
三、ioc常见注解总结
- 创建对象(相当于:<bean id="" class="">)
(1)@component
作用:把资源让spring来管理。相当于在xml中配置一个bean。
属性:value:指定bean的id。如果不指定value属性,默认bean的id是当前类的类名。首字母小写。
(2)@controller @service @repository
他们三个注解都是针对一个的衍生注解,他们的作用及属性都是一模一样的。
他们只不过是提供了更加明确的语义化。
@controller:一般用于表现层的注解。
@service:一般用于业务层的注解。
@repository:一般用于持久层的注解。
细节:如果注解中有且只有一个属性要赋值时,且名称是value,value在赋值是可以不写。
- 用于注入数据(相当于:<property name="" ref=""> <property name="" value="">)
(1)@autowired
作用:自动按照类型注入。当使用注解注入属性时,set方法可以省略。它只能注入其他bean类型。当有多个类型匹配时,使用要注入的对象变量名称作为bean的id,在spring容器查找,找到了也可以注入成功。找不到就报错。
(2)@resource
作用:直接按照bean的id注入。它也只能注入其他bean类型。
属性:name:指定bean的id。
(3)@value
作用:注入基本数据类型和string类型数据的
属性:value:用于指定值
四、项目源码及参考资料下载
链接:https://pan.baidu.com/s/1rdbxqcbchta9i-bg8z1r4q
提取码:io8n