Spring Web三层属性注入

Spring Web三层属性注入_第1张图片

测试代码

先加载配置文件

Spring Web三层属性注入_第2张图片
配置文件

在配置文件里面就一个扫描注解的标签。

然后根据 studentAction的bean编号ID去找到 自动注解web层特有的Controller("名称")注解,即创建StudentAction类的实例studentAction放进Spring容器内部。这样通过getBean("studentAction")就取出了实例。然后调用StudentAction类中的方法execute()

Spring Web三层属性注入_第3张图片

但是execute()方法内又有studentService的实例,因此需要创建StudentService接口和StudentService的实现类

Spring Web三层属性注入_第4张图片
StudentService接口
Spring Web三层属性注入_第5张图片
StudentService的实现类StudentServiceImpl

StudentService的实现类是在Service层,用@Service注解表示,将StudentServiceImpl实例化。实现类中又有StudentDao类的私有属性,这时用到Dao层. 所以继续创建StudentDao的接口和实现类

Spring Web三层属性注入_第6张图片

接口
Spring Web三层属性注入_第7张图片
实现类

Dao层特定用@Repository("名称")进行注解,将StudentDaoImpl实例化注入到StudentServiceImpl类中去。

你可能感兴趣的:(Spring Web三层属性注入)