<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    佳麗斯 加厚雙人/單人秋冬被子暖冬 羊毛被芯羊毛柔絲被特價包郵 憂憂魚冬外穿打底褲女秋冬厚長褲女褲加絨加厚高腰彈力鉛筆褲靴褲 韓國代購2013新款 韓版秋冬休閑女時尚磨破口袋衛(wèi)衣韓版學(xué)生裝 潮

    有時,退一步,能一口氣進幾步,只是這先退一步需要勇氣和自信。

    用心愛你,努力工作。

      BlogJava :: 首頁 :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
      70 隨筆 :: 1 文章 :: 33 評論 :: 0 Trackbacks

    計劃用一個月時間來學(xué)習Spring,在這里把自己的學(xué)習過程記錄下來,方便想學(xué)習Spring的人,也為自己日后復(fù)習有個參考。以下通過一個簡單的例子來先了解下Spring的用法。
    (1)創(chuàng)建一個java工程,建立如下類:HelloBean

    package com.ducklyl;

    public class HelloBean {
     private String helloWord;

     public String getHelloWord() {
      return helloWord;
     }

     public void setHelloWord(String helloWord) {
      this.helloWord = helloWord;
     }


    }


    (2)創(chuàng)建Spring配置文件:beans-config.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="com.ducklyl.HelloBean">
     <property name="helloWord">
        <value>Hello,ducklyl!</value>
     </property>
    </bean>

    </beans>

    (3)導(dǎo)入Spring所需的包:commons-logging.jar,spring.jar 。(日志包和Spring包)
    包下載地址:
    http://www.ziddu.com/download/3555993/Spring.rar.html
    (4)創(chuàng)建測試類:SpringDemo.java

    package com.ducklyl;

    import org.springframework.core.io.FileSystemResource;
    import org.springframework.core.io.Resource;
    import org.springframework.beans.factory.BeanFactory;
    import org.springframework.beans.factory.xml.*;


    public class SpringDemo{
     public static void main(String[] args)
     {
      //讀取配置文件
      Resource rs=new FileSystemResource("beans-config.xml");
      //實例化Bean工廠
      BeanFactory factory=new XmlBeanFactory(rs);
      
      //獲取id="helloBean"對象
      HelloBean hello=(HelloBean)factory.getBean("helloBean");
      //調(diào)用helloBean對象getHelloWord()方法
      System.out.println(hello.getHelloWord());
     }

    }

    如果以上配置正確的話,運行SpringDemo.java,可以看到輸出結(jié)果:Hello,ducklyl!



        

    posted on 2007-10-21 13:26 王生生 閱讀(2133) 評論(12)  編輯  收藏 所屬分類: Spring

    評論

    # re: Spring學(xué)習筆記 2007-10-21[未登錄] 2007-10-21 13:41 Evan
    等等我,一起學(xué)  回復(fù)  更多評論
      

    # re: Spring學(xué)習筆記 2007-10-21 2007-10-21 15:13 支持
    不錯,我也在學(xué)spring,關(guān)注ing,不知樓主用的是什么書?  回復(fù)  更多評論
      

    # re: Spring學(xué)習筆記 2007-10-21 2007-10-21 21:18 大王
    我現(xiàn)在也在學(xué)spring,一直很奇怪這里<value>Hello,ducklyl!</value>
    好像不能傳參啊??,只能手工設(shè)定??
    IoC到底怎么用啊?  回復(fù)  更多評論
      

    # re: Spring學(xué)習筆記 2007-10-21[未登錄] 2007-10-21 22:37 helloworld
    我有spring的電子書,不知道怎么傳給你們  回復(fù)  更多評論
      

    # re: Spring學(xué)習筆記 2007-10-21 2007-10-22 08:34 楊愛友
    spring的電子書好象是參考手冊,很詳細很全面字典式的,好象不利于我們這些初學(xué)者。林信良那本《spring 2.0技術(shù)書冊》我覺得很好,但是高手都告訴我,那本書太簡單?!秙pring in Action 2.0》好象還沒出來吧,只有1.0的。  回復(fù)  更多評論
      

    # re: Spring學(xué)習筆記 2007-10-21 2007-10-22 23:05 world7th
    為啥我把你的代碼COPY后,運行結(jié)果是
    2007-10-22 23:00:16 org.springframework.core.CollectionFactory <clinit>
    信息: JDK 1.4+ collections available
    2007-10-22 23:00:16 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
    信息: Loading XML bean definitions from file [D:\java\SpringIocStudy\beans-config.xml]
    Exception in thread "main" org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from file [D:\java\SpringIocStudy\beans-config.xml]; nested exception is java.io.FileNotFoundException: beans-config.xml (系統(tǒng)找不到指定的文件。)
    Caused by: java.io.FileNotFoundException: beans-config.xml (系統(tǒng)找不到指定的文件。)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(Unknown Source)
    at org.springframework.core.io.FileSystemResource.getInputStream(FileSystemResource.java:85)
    at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:351)
    at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:334)
    at org.springframework.beans.factory.xml.XmlBeanFactory.<init>(XmlBeanFactory.java:73)
    at org.springframework.beans.factory.xml.XmlBeanFactory.<init>(XmlBeanFactory.java:61)
    at demo.SpringDemo.main(SpringDemo.java:14)



    解釋下啊,大俠  回復(fù)  更多評論
      

    # re: Spring學(xué)習筆記 2007-10-21[未登錄] 2007-10-23 00:52 xmlspy
    回復(fù):world7th

    java.io.FileNotFoundException: beans-config.xml (系統(tǒng)找不到指定的文件。)
      回復(fù)  更多評論
      

    # re: Spring學(xué)習筆記 2007-10-21[未登錄] 2007-10-23 08:40 ducklyl
    你路徑放在D:\java\SpringIocStudy\beans-config.xml
    程序應(yīng)該這樣寫:
    Resource rs=new FileSystemResource("D:\\java\\SpringIocStudy\\beans-config.xml");  回復(fù)  更多評論
      

    # re: Spring學(xué)習筆記 2007-10-21 2007-10-23 10:22 sili
    <bean id="helloBean" class="com.ducklyl.HelloBean"> (1)
    <property name="helloWord"> (2)
    <value>Hello,ducklyl!</value> (3)
    </property>
    </bean>


    能解釋以下1,2,3行的意思嗎  回復(fù)  更多評論
      

    # re: Spring學(xué)習筆記 2007-10-21 2007-10-29 13:17 支持
    <bean id="helloBean" class="com.ducklyl.HelloBean">
    HelloBean helloBean = new HelloBean();
    <property name="helloWord">
    helloBean.setHelloWord("Hello,duckly!");
    這就是依賴注入,
    原來由我們程序員做的事情,現(xiàn)在交給容器去做了  回復(fù)  更多評論
      

    # re: Spring學(xué)習筆記 2007-10-21 2007-12-16 22:58 Mation
    初學(xué)Spring,有個問題總是搞不明白,在網(wǎng)上找了很久都沒有答案
    看到大俠這里有關(guān)于我所遇到的問題,相關(guān)方面
    問題如下:
    徑放在D:\java\SpringIocStudy\beans-config.xml
    程序應(yīng)該這樣寫:
    Resource rs=new FileSystemResource
    ("D:\\java\\SpringIocStudy\\beans-config.xml");

    請問上面的路徑能用相對路徑嗎?
    我的QQ504808470
    Mail : mationchen@126.com
      回復(fù)  更多評論
      

    # re: Spring學(xué)習筆記 2007-10-21 2008-06-04 14:26 andyjames
    spring in action這本書建議大家去看看 很不錯的書  回復(fù)  更多評論
      

    森露2013新款豹紋打底衫 高領(lǐng) 女 長袖 修身長袖t恤女 加絨加厚冬 2013春秋新款女裝 潮修身大碼長袖小西裝外套女 韓版中長款小西裝 憂憂魚2013秋冬新款直筒褲女顯瘦長褲加絨黑色休閑褲修身西褲女褲
    主站蜘蛛池模板: 国产精品1024在线永久免费| 成在人线av无码免费高潮水 | 国产无遮挡又黄又爽免费网站 | 日本高清高色视频免费| 最近最好的中文字幕2019免费| 亚洲国产精品一区二区三区久久| 日本久久久久亚洲中字幕| WWW国产亚洲精品久久麻豆| 国产精品免费AV片在线观看| 日韩中文无码有码免费视频 | 亚洲av无码专区在线电影| 免费人成在线观看视频高潮| 免费看的黄色大片| 亚洲av无码一区二区乱子伦as| 在线精品自拍亚洲第一区| 免费A级毛片无码A∨| 亚洲国产精品无码久久青草| ww亚洲ww在线观看国产| 精品免费久久久久国产一区| 成熟女人牲交片免费观看视频 | 中文字幕不卡高清免费| 影音先锋在线免费观看| 中文字幕亚洲免费无线观看日本| 无忧传媒视频免费观看入口| 波多野结衣免费在线观看| 人人狠狠综合久久亚洲婷婷| 麻豆安全免费网址入口| 日本免费网址大全在线观看 | 亚洲精品无码专区在线在线播放| 亚洲国产精品18久久久久久| 我的小后妈韩剧在线看免费高清版| 中文字幕亚洲一区| 亚洲AV无码一区二区三区电影 | 亚洲精品视频在线播放| 一个人免费观看www视频| 好男人看视频免费2019中文 | 久久亚洲欧美国产精品| 国产妇乱子伦视频免费| 亚洲高清国产拍精品26U| 少妇亚洲免费精品| 色吊丝最新永久免费观看网站|