第一章 Spring依赖注入方式【基于XML】
1.1 set注入
- 语法:<property>
1.2 构造器注入
- 语法:<constructor-arg>
1.3 p名称空间注入
-
语法:
-
示例代码
<bean id="stuZhouxu" class="com.atguigu.spring.pojo.Student"> <property name="stuId" value="102"></property> <property name="stuName"> <value><![CDATA[<<zhouxu>>]]></value> </property> </bean> <bean id="stuZhiFeng" class="com.atguigu.spring.pojo.Student"> <constructor-arg name="stuId" value="103"></constructor-arg> <constructor-arg name="stuName" value="zhifeng"></constructor-arg> </bean> <bean id="stuXiaoxi" class="com.atguigu.spring.pojo.Student" p:stuId="104" p:stuName="xiaoxi"></bean>