spring是一个很有名的java开源框架,作为一名javaer还是有必要了解spring的设计原理和机制,beans.core.context作为spring的三个核心组件.而三个组件中最重要的就是beans组件了. 从一个简单实例来查看spring加载配置文件中的bean. public class Student { private int stId; private String studentName; private String studentAge; public int get…
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-config.xml"); Spring加载xml数据的切入点是通过ClassPathXmlApplicationContext类进行切入的.该类是面向xml文件.类似的spring还提供了面向注解的解析类AnnotationConfigApplicationContext等. 进入 new ClassPathXmlApp…