Spring环境搭建
1、 导入jar包
2、 约束贴上去
这样就搭建好了Spring最基本的环境!
下面我们来看一下如何使用Spring来创建对象吧。
Hello World
1、创建一个student类
2、创建Spring配置文件
<!-- class属性指定用于创建bean的全类名 -->
<!-- id属性指定用于引用bean实例的标识 -->
<bean id="student" class="com.atguigu.helloworld.bean.Student">
<!-- 使用property子元素为bean的属性赋值 -->
<property name="studentId" value="1001"/>
<property name="stuName" value="Tom2015"/>
<property name="age" value="20"/>
</bean>
3、测试
//1.创建IOC容器对象
ApplicationContext iocContainer =
new ClassPathXmlApplicationContext(“helloworld.xml”);
//2.根据id值获取bean实例对象
Student student = (Student) iocContainer.getBean(“student”);
//3.打印bean
System.out.println(student);
通过set方法创建对象(依赖注入)
以上的Student类就是通过Setter方法注入得到值
1、在student类中创建set方法
2、在xml中配置bean
3、使用property这个属性赋值
注意:name属性的值必须与类中的setter方法名的小写字母开头(去掉set)
通过构造方法创建对象(依赖注入)
使用construction-arg标签
<bean id="student" class="com.blh.student" >
<constructor-arg value= "张三"/>
<constructor-arg value= "18"/>
</bean >
注意:如果类中有带参数的构造方法则需要再创建一个无参的构造方法
创建对象的三种方法
通过构造方法创建
无参:
默认就是无参
有参:
需要明确配置
1需要在类中提供有参的构造方法
2在xml中设置调用哪个构造方法创建对象
1.1如果设定的条件匹配多个构造方法则调用最后一个
index:构造方法中参数的下标
ref:引用另一个bean
value:基本数据类型或string
name:参数的名称
type:参数的类型
通过指定以上的类型可以精确的找到某个构造方法。