您当前的位置: 首页 > 慢生活 > 程序人生 网站首页程序人生
14-Spring配置文件-依赖注入4
发布时间:2024-12-19 19:06:58编辑:雪饮阅读()
-
P命名空间注入本质也是set方法注入,但比起前番的set方法注入更加方便,主要体现在配置文件中,如下:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="userDao" class="com.dao.impl.UserDaoImpl"></bean>
<bean id="userService" class="com.service.impl.UserServiceImplement" p:userDao-ref="userDao"></bean>
</beans>
这里首先声明了p命名空间,然后用p命名空间为beean的属性userDao-ref的前半部分userDao我的理解就是和前番setter中的实际setter名称的后缀也就是除set之后的部分并将其首字母小写的,那么ref后面的值则我的理解就是相当于setter的接收参数,同样也很前番一样支持bean定义中的dao层的实现。
关键字词:Spring