ioc(inversion if control)-控制反转是spring俩大核心技术之一,ioc一般分为俩种类型:依赖注入(dependency injection,简称di)和依赖查找(dependency lookup)
使用示例:
1、新建工程并导入spring相关jar包。
2、新建数据访问层及业务逻辑层
代码结构:
代码示例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/**
* 实体bean
* @author bc
*
*/
public class user {
private integer id;
private string username;
private string password;
//get set方法略
}
/**
* 数据访问层接口
* @author bc
*
*/
public interface userdaointerface {
/**查询所有用户信息*/
public list<user> getuserlist();
}
/**
* 数据访问层实现类
* @author bc
*
*/
public class userdaoimpl implements userdaointerface {
/**模拟数据库数据*/
private list<user> userlist;
public userdaoimpl() {
userlist = new arraylist<user>();
user u = new user( 1 , "张三" , "123" );
userlist.add(u);
u = new user( 2 , "李四" , "456" );
userlist.add(u);
u = new user( 3 , "王五" , "789" );
userlist.add(u);
u = new user( 4 , "赵六" , "233" );
userlist.add(u);
}
@override
public list<user> getuserlist() {
return userlist;
}
}
/**
* 业务逻辑层接口
* @author bc
*
*/
public interface userbizinterface {
/**查询所有用户信息*/
public list<user> getuserlist();
}
/**
* 业务逻辑层实现类
* @author bc
*
*/
public class userbizimpl implements userbizinterface {
/**使用spring注入*/
private userdaointerface userdao;
@override
public list<user> getuserlist() {
return userdao.getuserlist();
}
/**通过set方法注入,因此需要注入的属性必须设置set方法*/
public void setuserdao(userdaointerface userdao) {
this .userdao = userdao;
}
public userdaointerface getuserdao() {
return userdao;
}
}
|
3、编写applicationcontext.xml配置文件
表头信息:
1
2
3
4
5
6
7
|
<?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:p= "http://www.springframework.org/schema/p"
xsi:schemalocation="http: //www.springframework.org/schema/beans
http: //www.springframework.org/schema/beans/spring-beans-4.1.xsd">
|
配置代码:
1
2
3
4
5
6
7
|
<!-- 数据访问层对象:userdao -->
<bean id= "userdao" class = "com.bc.dao.impl.userdaoimpl" ></bean>
<!-- 业务逻辑层对象:userbiz -->
<bean id= "userbiz" class = "com.bc.biz.impl.userbizimpl" >
<!-- 通过set方法注入数据访问层属性 -->
<property name= "userdao" ref= "userdao" />
</bean>
|
测试代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
public class userbiztest {
private applicationcontext ctx;
@before
public void load() {
//读取applicationcontext.xml配置文件
ctx = new classpathxmlapplicationcontext( "applicationcontext.xml" );
}
@test
public void getuserlisttest() {
//创建一个业务逻辑层对象
userbizinterface userdao = (userbizinterface) ctx.getbean( "userbiz" );
//调用方法获取用户信息
list<user> userlist = userdao.getuserlist();
//遍历集合
for (user user : userlist) {
system.out.println(user.getid() + "|" + user.getusername() + "|" +user.getpassword());
}
}
}
|
上面的实例代码中,我们使用的是set方法注入,spring的注入方式有许多种,注入的属性类型也有很多情况,详细请参考:
关于bean的作用域
scope=”singleton” 默认,表示在spring容器中仅存在一个共享的bean实例
scope=”prototype” 每次从容器中都获取一个新的实例
scope=”request” 每次http请求都会创建一个新的bean实例
scope=”session” 同一个http请求共享一个bean实例
scope=”global session” 同一个全局session共享一个bean实例
总结
以上就是本文关于spring ioc的简单实例及bean的作用域属性解析的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!
原文链接:http://blog.csdn.net/qq_32588349/article/details/51554080