Spring可以通过set方法的方式实现属性注入
1.需要进行属性注入的类
package com.maty.property;
/**
* @author maty e-mail:512181558@qq.com
* @version 创建时间:2018年5月16日 下午3:04:58
* 类说明 该类为有属性注入需求的类
*/
public class User
{
private String name; //需要注入的属性
//编写该属性的set方法
public void setName(String name)
{
this.name = name;
}
//该方法用来测试属性注入是否成功
public void UserTest()
{
System.out.println("user的name属性="+name);
}
}
2.ApplicationContext.xml的编写
<!-- 通过set方法进行属性注入 -->
<bean id = "user" class = "com.maty.property.User">
<property name="name" value="maty"></property>
</bean>
//上述设定翻译为:将User这个类交给Spring去做管理,并且在初始化的时候按照property的参数给User类的属性去赋值
3.编写测试类查看注入是否成功
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.maty.property.PropertyConstructor;
import com.maty.property.User;
/**
* @author maty e-mail:512181558@qq.com
* @version 创建时间:2018年5月16日 下午12:23:01
* 类说明
*/
public class MyTest
{
public static void main(String[] args)
{
//第一步:加载xml文件
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
User bean = (User) context.getBean("user");
bean.UserTest();
}
}
4.运行结果
log4j:WARN No appenders could be found for logger (org.springframework.core.env.StandardEnvironment).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
user的name属性=maty
5.总结
属性注入的功能主要点在于bean标签中的property子标签,而且该子标签工作的前提是需要属性注入的类提供了该属性的set方法。如果注入为对象,请参考下一篇
版权声明:本文为maty_wang原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。