博客
关于我
spring 的IOC的依赖注入(DI)-------普通属性,集合的注入
阅读量:401 次
发布时间:2019-03-05

本文共 2773 字,大约阅读时间需要 9 分钟。

?. ??????

?Spring?????????????????????????????????application.properties?xml?????????????????Spring???bean??

??????

?????

public class UserServiceImpl implements UserService {    private String userName;    private String password;    private UserDao ud;    // ???????    public UserServiceImpl(UserDao ud) {        this.ud = ud;    }    // ??????    public UserServiceImpl() {    }    public void setUserName(String userName) {        this.userName = userName;    }    public void setPassword(String password) {        this.password = password;    }    public int addUser() {        System.out.println("uname:" + userName + "password:" + password);        return ud.addUser();    }}

?. ?????

?Spring???????????????????????List?Map?

??????

liu
jian
fu

?????

public class UserServiceImpl implements UserService {    private List
strNameList; private Map
userMap; public List
getStrNameList() { return strNameList; } public void setStrNameList(List
strNameList) { this.strNameList = strNameList; } public Map
getUserMap() { return userMap; } public void setUserMap(Map
userMap) { this.userMap = userMap; } public int addUser() { System.out.println("uname:" + userName + "password:" + password); System.out.println("strlist:" + strNameList.toString()); System.out.println("map:"); for (String key : userMap.keySet()) { System.out.println("u:" + userMap.get(key).getName() + ">>:" + userMap.get(key).getAge()); } return ud.addUser(); }}

?. ????????

?Spring????????@Autowired???ref??????????????????bean?

??????

?????

public class UserServiceImpl implements UserService {    private UserDao ud;    // ???????    public UserServiceImpl(UserDao ud) {        this.ud = ud;    }    // ??????    public UserServiceImpl() {    }    public int addUser() {        System.out.println("uname:" + userName + "password:" + password);        return ud.addUser();    }}

?????????????????????????????Spring????????????

转载地址:http://beuzz.baihongyu.com/

你可能感兴趣的文章
Python 多处理 apply_async 永远不会在 Windows 7 上返回结果
查看>>
Python 多处理 Numpy 随机
查看>>
Python 多处理 >= 125 列表永远不会完成
查看>>
Python 多处理:在第一个子错误时中止映射
查看>>
Python 多处理不断产生 pythonw.exe 进程而不做任何实际工作
查看>>
Python 多处理从不加入
查看>>
Python 多处理如何优雅地退出?
查看>>
Python 多处理将子进程的标准输出重定向到 Tkinter 文本
查看>>
Python 多处理库错误(AttributeError:__exit__)
查看>>
Python 多处理模块的 .join() 方法到底在做什么?
查看>>
python 多线程与GIL
查看>>
Python 多线程学习(转)
查看>>
python 多进程-基础
查看>>
python 多进程-进阶-进程池
查看>>
python 多进程-进阶-进程间通信之Pipe
查看>>
python 多进程-进阶-进程间通信之Queue
查看>>
Python编程快速入门
查看>>
Python编程基础(附Pycharm与开发环境)
查看>>
python 如何“否定“value : 如果为真则返回假,如果为假则返回真
查看>>
Python 如何在 Web 环境中使用 Matplotlib 进行数据可视化
查看>>