首页 > 开发 > 综合 > 正文

第一個Spring程式 作者:林信良

2024-07-21 02:14:07
字体:
来源:转载
供稿:网友
国内最大的酷站演示中心!

第一個spring程式




 


首先我們要先取得spring的相關檔案,spring的檔案放在sourceforge上,網址是:http://sourceforge.net/project/showfiles.php?group_id=73357



撰寫此文時,spring最新的版本是1.1.1,有兩個下載版本,一個是spring-framework-1.1.1-with- dependencies.zip,一個是spring-framework-1.1.1.zip,with-dependencies的包括一些 ant、jakarta-commons、struts、velocity等等其它開源java專案的相依檔案,如果您也需要這些相關檔案,可以下載這個 版本,如果您已經有這些相關檔案,則只需要下載spring-framework-1.1.1.zip這個檔案。



下載zip檔案並解壓縮之後,在dist目錄下就是使用spring所需要的相關檔案,如果下載的是with-dependencies版本,則在lib目錄中的是您可能會用到的相依檔案。在dist目錄下,spring-core.jar是spring的核心,對於撰寫簡單的單機程式來說,使用這個核心即可,如果日後需要使用到spring其它的子框架支援,再將其它的jar檔案加入即可,例如spring-aop.jar、spring-webmvc.jar等等。您也可以直接使用spring.jar這個檔案,它包括了所有spring支援的功能所需要的所有類別,而不再需要加入個別的jar檔案。



就我們 的第一個spring程式,只要spring-core.jar這個檔案即可,它唯一相依的其它專案檔案,是commons-logging.jar,您 可以在lib目錄的jakarta-commons目錄中找到,將這兩個檔案的位置加入至classpath中,我們就可以開始撰寫第一個spring程式。



來撰寫我們的第一個組件(component),它只是一個簡單的javabean,用來向新的使用者打招呼:



package onlyfun.caterpillar;




 


public class hellobean {



    private string helloword = "hello!world!";



   



    public void sethelloword(string helloword) {



        this.helloword = helloword;



    }



    public string gethelloword() {



        return helloword;



    }



}




 


hellobean有預設的"hello!world!"字串,我們也可以透過setter來設定新的招呼語,不過我們不親自撰寫程式來作這些事,而是在組態檔案定義,由spring來為我們作設定的動作,我們撰寫bean.xml:



<?xml version="1.0" encoding="utf-8"?>



<!doctype beans public "-//spring/dtd bean/en"



"http://www.springframework.org/dtd/spring-beans.dtd">



<beans>



    <bean id="hellobean" class="onlyfun.caterpillar.hellobean">



        <property name="helloword"><value>hello!justin!</value></property>



    </bean>



</beans>




 


bean.xml中定義了javabean的別名與來源類別,標籤中設定了我們希望注入至javabean的字串值,bean.xml必須在您的classpath可以存取到的目錄中,也許是現行的工作目錄,在web程式中可以是在classes目錄下,我們這邊使用的是單機程式的方式, 所以將之置於現行的工作目錄中(classpath都會設定 . 吧),接著我們撰寫一個簡單的測試程式:



package onlyfun.caterpillar;




 


import java.io.*;



import org.springframework.beans.factory.beanfactory;



import org.springframework.beans.factory.xml.xmlbeanfactory;




 


public class springtest {



    public static void main(string[] args) throws ioexception {



        inputstream is = new fileinputstream("bean.xml");



        beanfactory factory = new xmlbeanfactory(is);



       



        hellobean hello = (hellobean) factory.getbean("hellobean");



        system.out.println(hello.gethelloword());



    }



}




 


這是從比較低層次的角度來使用spring的ioc容器功能,藉由beanfactory來讀取組態檔案並完成依賴的關聯注入,這邊的依賴是什麼?指的是 hellobean相依於string物件,透過setter所保留的介面,我們使用setter injection來完成這個依賴注入,而不是將招呼語寫死在hellobean,beanfactory是整個spring的重點所在,整個spring的核心都圍繞著它,在這邊使用的是xmlbeanfactory,負責讀取xml組態檔案,當然我們也可以使用properties檔案。



beanfactory讀取bean的組態設定並完成關係維護之後,我們可以藉由getbean()方法並指定bean的別名來取得實例,來看看實際運行之後的效果:



2004/10/21 上午 10:28:00



org.springframework.beans.factory.xml.xmlbeandefinitionreader loadbeandefinitions



資訊: loading xml bean definitions from resource for inputstream



2004/10/21 上午 10:28:00



org.springframework.beans.factory.support.abstractbeanfactory getbean



資訊: creating shared instance of singleton bean 'hellobean'



hello!justin!




 


如果今天您要想改變招呼語,則只要更改bean.xml就可以了,不用修改主要的程式,從比較一般的角度來看,就意味著如果您想要改變一些物件之間的依賴關係,則只要修改組態檔即可,而不用修改組件的任何一行程式。




 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表