真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

MyEclipse如何開發(fā)Spring

這篇文章主要講解了“MyEclipse如何開發(fā)Spring”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“MyEclipse如何開發(fā)Spring”吧!

創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比同仁網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式同仁網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋同仁地區(qū)。費(fèi)用合理售后完善,10年實(shí)體公司更值得信賴。

MyEclipse開發(fā)Spring入門的操作是什么呢?那么開始我們的講解吧:

1. 新建普通 Java 項(xiàng)目 MySpringTest. 這個過程無需贅述了, 建議建項(xiàng)目的時候?qū)?src 目錄和 bin(或者classes)目錄分開, 另外提示你切換透視圖的時候一定要切換過去到 Java 透視圖, 此時默認(rèn)會在 Package Explorer 中選中剛才已經(jīng)建好的 Java Project, 但是背景為灰色.

2. 首先單擊一下左邊的 Package Explorer 中新建的 MySpringTest 項(xiàng)目來使其高亮選中, 接著點(diǎn)擊菜單項(xiàng) MyEclipse -> Add Spring Capabilities..., 接著會彈出對話框 Add Spring Capabilities 提示你設(shè)置當(dāng)前項(xiàng)目的 Spring 屬性.

對話框的***頁可以選擇全部的 Spring 框架, 這是最保險(xiǎn)的做法, 不過我們的例子只需要選中Spring 2.0 Core Libraries 就可以了. 點(diǎn)擊 "Next" 繼續(xù).

第二頁是 Add Spring bean configuration file. 保持默認(rèn)值不變就可以了. ***點(diǎn)擊 Finish.

3. Spring 的開發(fā)沒法自動生成 Bean, 這里大家只好手工來寫了, 也很簡單. 分別復(fù)制下面的三個代碼, 然后在 MyEclipse src 目錄上點(diǎn)擊右鍵后選擇菜單項(xiàng) Paste 就可以生成 Java 類文件了.

public interface Action {         public String execute(String str);      }    public class UpperAction implements Action {         private String message;         public String getMessage() {      return message;     }        public void setMessage(String string) {       message = string;     }        public String execute(String str) {      return (getMessage() + str).toUpperCase();     }   }   import org.springframework.context.ApplicationContext;  import org.springframework.context.support.ClassPathXmlApplicationContext;   public class TestAction {    public static void main(String[] args) {    ApplicationContext ctx = new ClassPathXmlApplicationContext(      "applicationContext.xml");    Action bean = (Action) ctx.getBean("theAction");    System.out.println(bean.execute("Rod"));   }  }

4. 雙擊左側(cè)在第2步生成的 applicationContext.xml, 然后選擇菜單項(xiàng) Window -> Show View -> Other..., 在彈出的對話框中選擇 MyEclipse Enterprise Workbench 節(jié)點(diǎn)下的 Spring Beans 子節(jié)點(diǎn)打開視圖 Spring Beans. 此視圖講出現(xiàn)在主界面的右下側(cè).

5. 展開此視圖中的 MySpringTest 父節(jié)點(diǎn), 并選中 src/applicationContext.xml 子節(jié)點(diǎn), 在此節(jié)點(diǎn)上點(diǎn)擊右鍵并選擇彈出菜單項(xiàng)中的 New Bean 來打開 Create a new Spring bean 對話框, 并按照下圖輸入對應(yīng)的內(nèi)容.

Bean Id: [theAction]

Bean class: [UpperAction]

接下來請單擊一下 Tab 面板 Properties 并點(diǎn)擊其中的 Add... 按鈕, 在接下來彈出的 Property Wizard 對話框中按照下圖輸入/選擇內(nèi)容:

Name: [message]

Spring type: [value]

Type: [java.lang.String]

Value:[Hello_]

***點(diǎn)擊兩次 Finish 按鈕關(guān)閉所有向?qū)υ捒? 然后點(diǎn)擊菜單 File -> Save. 此時可以看到 applicationContext.xml 的內(nèi)容如下所示:

xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-2.0.xsd">   lazy-init="default" autowire="default" dependency-check="default">   Hello_

然后雙擊 Package Explorer 下 MySpringTest/src/TestAction.java 打開源代碼, 然后點(diǎn)擊菜單 Run -> Run As -> 1. Java Application, 如果沒有錯誤的話將會出現(xiàn)如下的輸入, 您的***個 Hello Spring 運(yùn)行成功了:

log4j:WARN No appenders could be found for logger (org.springframework.context.support.ClassPathXmlApplicationContext).   log4j:WARN Please initialize the log4j system properly.   HELLO_ROD

接著您就可以對著參考書繼續(xù)創(chuàng)建類, 修改 applicationContext.xml 做更多的練習(xí)了.

開發(fā)整合 Hibernate 的關(guān)鍵操作點(diǎn)截圖:

1. 在數(shù)據(jù)庫瀏覽器中選擇反向工程菜單;

MyEclipse如何開發(fā)Spring

2. 對話框的選項(xiàng)說明

MyEclipse如何開發(fā)Spring

感謝各位的閱讀,以上就是“MyEclipse如何開發(fā)Spring”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對MyEclipse如何開發(fā)Spring這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!


本文名稱:MyEclipse如何開發(fā)Spring
網(wǎng)站網(wǎng)址:http://weahome.cn/article/jcdjos.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部