赞
踩
依赖注入: Dependency Injection
IOC的作用: 降低程序间的耦合(依赖关系)
依赖关系的管理: 以后都交给spring来维护,在当前类需要用到其他类的对象,由spring为我们提供,
我们只需要在配置文 件中说明
依赖关系的维护: 就称之为依赖注入。
能注入的数据:有三类
注入的方式:有三种
public class AccountServiceImpl implements IAccountService { //如果是经常变化的数据,并不适用于注入的方式 private String name; private Integer age; private Date birthday; public AccountServiceImpl(String name,Integer age,Date birthday){ this.name = name; this.age = age; this.birthday = birthday; } public void saveAccount(){ System.out.println("service中的saveAccount方法执行了。。。"+name+","+age+","+birthday); } }
<!--构造函数注入:
使用的标签:constructor-arg
标签出现的位置:bean标签的内部
标签中的属性
type:用于指定要注入的数据的数据类型,该数据类型也是构造函数中某个或某些
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。