當(dāng)前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
Spring-级联赋值
生活随笔
收集整理的這篇文章主要介紹了
Spring-级联赋值
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
一、級(jí)聯(lián)賦值第一種方法
1.創(chuàng)建Emp類
2.創(chuàng)建Dept類
package com.bean;public class Dept {private String dName;public void setdName(String dName) {this.dName = dName;}@Overridepublic String toString() {return "Dept{" +"dName='" + dName + '\'' +'}';} }3.配置bean3.xml文件
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><!--***級(jí)聯(lián)賦值第一種方法**** --><bean name="emp" class="com.bean.Emp"><property name="EName" value="lucy"></property><property name="gender" value="male"></property><property name="dept" ref="dept"></property><property name="dept.dName" value="安保"></property></bean><bean name="dept" class="com.bean.Dept"></bean> </beans>4.創(chuàng)建測(cè)試類
public class TestBean2 {@Testpublic void testUpdate(){//加載spring配置文件ApplicationContext context=new ClassPathXmlApplicationContext("bean3.xml");//獲取配置創(chuàng)建的對(duì)象Emp service = context.getBean("emp", Emp.class);service.add();}}二、級(jí)聯(lián)賦值的第二種方法
<!-- 級(jí)聯(lián)賦值,類似于外部bean配置--><bean id="emp" class="cn.zsp.spring5.bean.Emp"><property name="ename" value="zsp"></property><property name="gender" value="男"></property><property name="dept" ref="dept" ></property></bean><bean id="dept" class="cn.zsp.spring5.bean.Dept"><property name="dname" value="安保部"></property></bean>總結(jié)
以上是生活随笔為你收集整理的Spring-级联赋值的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Spring-注入方式(基于xml方式)
- 下一篇: spring-注入集合对象