摘要:
Spring IoC 容器 1.1 IoC Container 和 Bean 介绍 控制反转(Inversion of Control,IoC )也被称为依赖注入(Dependency Injection,DI)。这是一个,多个对象仅仅通过构造器参数,工厂方法参数,或者对象实例在被构造器初始化或者被 阅读全文
摘要:
问题: List<People> peopleList = new ArrayList(); People people = new People(); for(int i = 0 ; i < 10 ; i++){ people.setId("id" + i); people.setAge("age 阅读全文