免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1201 | 回复: 0
打印 上一主题 下一主题

spring的精髓在于注入bean [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-05-23 15:44 |只看该作者 |倒序浏览
[php]
package org.spring;
import org.spring.AboutGridfriend;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.core.io.*;
import java.util.*;
public class About
{
    private AboutGridfriend girl;
   
    public void setGirl(AboutGridfriend girl)
    {
        this.girl = girl;
    }
   
    public void show()
    {
        LinkedList list = new LinkedList();
        try
        {
            Resource resource = new ClassPathResource("gridfriend.xml");
            BeanFactory factory = new XmlBeanFactory(resource);
            About a = (About)factory.getBean("girlfriend");
            System.out.println("姓名->"+a.girl.getName());
            System.out.println("年龄->"+a.girl.getAge());
            System.out.println("生日->"+a.girl.getBirthday());
            System.out.println("手机->"+a.girl.getMobile());
            System.out.println("工作地址->"+a.girl.getAddress());
            System.out.println("相识->"+a.girl.getUnderstand());
            list.add(a);
        }
        catch(Exception err)
        {
            err.printStackTrace();
        }
        Iterator it = list.iterator();
        while(it.hasNext())
        {
            About a = (About)it.next();
            System.out.println("姓名->"+a.girl.getName());
        }
        list.clear();
    }
   
    public static void main(String args[])
    {
        new About().show();
    }
}
[/php]
[php]
   
        
            甘燕洁
        
        
            23
        
        
            1983-09-21
        
        
            13978387988
        
        
            桂林移动
        
        
            2004年中秋前认识的
        
   
   
   
        
            
        
   
[/php]
[php]
package org.spring;
public class AboutGridfriend
{
    private String name = "";
    private int age = 0;
    private String birthday = "";
    private String mobile = "";
    private String address = "";
    private String understand = "";
   
    public void setName(String name)
    {
        this.name = name.trim();
    }
   
    public String getName()
    {
        return name;
    }
   
    public void setAge(int age)
    {
        this.age = age;
    }
   
    public int getAge()
    {
        return age;
    }
   
    public void setBirthday(String birthday)
    {
        this.birthday = birthday.trim();
    }
   
    public String getBirthday()
    {
        return birthday;
    }
   
    public void setMobile(String mobile)
    {
        this.mobile = mobile.trim();
    }
   
    public String getMobile()
    {
        return mobile;
    }
   
    public void setAddress(String address)
    {
        this.address = address.trim();
    }
   
    public String getAddress()
    {
        return address;
    }
   
    public void setUnderstand(String understand)
    {
        this.understand = understand.trim();
    }
   
    public String getUnderstand()
    {
        return understand;
    }
}
[/php]
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/460/showart_116863.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP