控制反转( Inversion of Control )
IoC 主要的作用:实例化对象的工作,通过IoC转交给 Spring 负责管理。解除了对象管理和序员之间的耦
创建对象的三种方式
通过构造方法创建
- 无参构造创建(默认)
- 有参构造创建(需要明确配置),需要在类中提供有参构造方法。
在 applicationContext.xml 中设置调用哪个构造方法创建对象;如果设定的条件匹配多个构造方法执行最后的构造方法。1
2
3index : 参数的索引,从 0 开始,
name: 参数名
type:类型(区分开关键字和封装类 int 和 Integer)1
2
3
4
5<!-- id表示获取到对象的标识,class标识创建哪个对象 -->
<bean id="student" class="com.hu.pojo.Student">
<constructor-arg index="0" name="id" type="int" value="12"></constructor-arg>
<constructor-arg index="1" name="name" type="java.lang.String" value="hu xiao ming"></constructor-arg>
</bean>实例工厂
需要先创建工厂,再产生对象。 实现步骤:先创建实例工厂
1
2
3
4
5public class StudentFactory {
public Student newInstance() {
return new Student(1, "hu xiao xin");
}
}在 applicationContext.xml 中配置工厂对象和需要创建的对象
测试:1
2
3<bean id="factory" class="com.hu.factory.StudentFactory"></bean>
<!--交给工厂来创建-->
<bean id="stu" factory-bean="factory" factory-method="newInstance"></bean>1
2
3
4
5
6public static void main(String[] args) {
ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
Student student = ac.getBean("stu",Student.class);
System.out.println(student);
System.out.println(ac.getBeanDefinitionNames());
}静态工厂
不需要创建工厂对象,步骤:配置:1
2
3
4
5public class StudentFactory {
public static Student newInstance() {
return new Student(1, "hu xiao xin");
}
}输入结果和上面一致,没有任何问题。1
<bean id="stu" class="com.hu.factory.StudentFactory" factory-method="newInstance"/>
通过注入方式给Bean赋值
通过构造方法
1
2
3
4<bean id="student" class="com.hu.pojo.Student">
<constructor-arg index="0" name="id" type="int" value="12"></constructor-arg>
<constructor-arg index="1" name="name" type="java.lang.String" value="hu xiao ming"></constructor-arg>
</bean>set方法:
基本数据类型或String,直接赋值。比如以下两种都是等效的。
1
2
3
4
5
6
7
8
9<bean id="student" class="com.hu.pojo.Student">
<property name="id" value="12"></property>
<property name="name" value="hu xiao ming"></property>
</bean>
或:
<bean id="student2" class="com.hu.pojo.Student">
<property name="id"><value>12</value></property>
<property name="name"><value>hu xiao ming</value></property>
</bean>如果是Set>或者List>
如果是数组:和集合类似吧1
2
3
4
5
6
7
8
9
10
11
12<!-- 此时没有set的构造方法,是通过属性set方法设值 -->
<bean id="student3" class="com.hu.pojo.Student">
<property name="id"><value>12</value></property>
<property name="name"><value>hu xiao ming</value></property>
<property name="set">
<set><!-- 若是List,则用<list> -->
<value>111</value><value>232</value><value>534</value>
</set>
</property>
<!-- 如果集合只有一个值,可以直接如下这样写 -->
<!-- <property name="set" value="312321"></property> -->
</bean>- 改为
Map
1 | <bean id="student3" class="com.hu.pojo.Student"> |
如果是Properties类型
1 | <bean id="student3" class="com.hu.pojo.Student"> |
Scope属性
scope 可取值
- singleton 默认值,单例
- prototype 多例,每次获取重新实例化
- request 每次请求重新实例化,web中
- session 每个会话对象内,对象是单例的.
- application 在 application 对象内是单例
- global session spring 推出的一个对象,依赖于spring-webmvc-portlet.jar,类似于 session
自动注入
1、在 Spring 配置文件中对象名和 ref=”id”id 名相同使用自动注入,可以不配置<property/>
2、两种配置办法
局部配置:在<bean>中通过 autowire="" 配置,只对这个\<bean>生效
全局配置:在<beans>中通过 default-autowire=""配置,表当当前文件中所有<bean>都是全局配置内容
3、autowire取值类型
1 | default:默认值,根据全局 default-autowire=""值,默认全局和局部都没有配置情况下,相当于 no |
加载配置文件
1 | <!-- 加载properties文件 如果加载多个文件,后面用逗号分隔开 --> |
如果,properties创建值:
1 | student.name=xiaoming |
加载文件:
1 | <!-- 加载properties文件 如果加载多个文件,后面用逗号分隔开 --> |
类里边使用properties的值(相当于给属性设置了一个初始值):
1 |
|