spring注入方式(一)

属性注入

  • 通过setter方法注入Bean的属性值或依赖的对象

实体:

public class Student {
private String name;

public void setName(String name) {
	this.name = name;
}
public Student() {
}

xml:

<!-- 
		 配置Bean
		 class: bean 的全类名,通过反射在IOC容器中创建Bean,所以要求Bean中必须有无参数的构造器
		 id: 标识容器中的Bean,id唯一。
	 -->
	<bean id="stu" class="models.Student">
		<property name="name" value="Tom"></property>
	</bean>

测试:
//创建spring的IOC容器
@SuppressWarnings(“resource”)
ApplicationContext ac = new ClassPathXmlApplicationContext(“applicationContext.xml”);
//从IOC容器中获取Bean的实例
Student s = (Student) ac.getBean(“stu”);
System.out.println(s);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值