环境依赖spring基础包commons-logging-1.1.3.jarspring-beans-4.0.0.RELEASE.jarspring-context-4.0.0.RELEASE.jarspring-core-4.0.0.RELEASE.jarspring-expression-4.0.0.RELEASE......
环境依赖spring基础包commons-logging-1.1.3.jarspring-beans-4.0.0.RELEASE.jarspring-context-4.0.0.RELEASE.jarspring-core-4.0.0.RELEASE.jarspring-expression-4.0.0.RELEASE......
环境依赖spring基础包commons-logging-1.1.3.jarspring-beans-4.0.0.RELEASE.jarspring-context-4.0.0.RELEASE.jarspring-core-4.0.0.RELEASE.jarspring-expression-4.0.0.RELEASE......
例bean:Teacherpublic class Teacher { private String teaName; private Integer teaAge; private Boolean teaGender; private String teachCourse; public Teacher{ ......
例bean:import java.util.*;public class CollectionDemo { private ListString list; private String[] array; private SetString set; private MapString,String map;......
依赖注入方式总概括为三种:1、setter注入2、构造器注入3、接口注入(不推荐)例bean:public class Student { private String stuName; private Integer stuAge; public Student { System.out.println'......