先加载配置文件
在配置文件里面就一个扫描注解的标签。
然后根据 studentAction的bean编号ID去找到 自动注解web层特有的Controller("名称")注解,即创建StudentAction类的实例studentAction放进Spring容器内部。这样通过getBean("studentAction")就取出了实例。然后调用StudentAction类中的方法execute()
但是execute()方法内又有studentService的实例,因此需要创建StudentService接口和StudentService的实现类
StudentService的实现类是在Service层,用@Service注解表示,将StudentServiceImpl实例化。实现类中又有StudentDao类的私有属性,这时用到Dao层. 所以继续创建StudentDao的接口和实现类
Dao层特定用@Repository("名称")进行注解,将StudentDaoImpl实例化注入到StudentServiceImpl类中去。