Spring环境搭建入门,hello world

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:参数的类型
通过指定以上的类型可以精确的找到某个构造方法。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值