Maven NetBeans
maven netbeans
netbeans 6.7 及更新的版本已經(jīng)內(nèi)置了 maven。對(duì)于以前的版本,可在插件管理中心獲取 maven 插件。此例中我們使用的是 netbeans 6.9。 關(guān)于 netbeans 的一些特性如下:
- 可以通過(guò) netbeans 來(lái)運(yùn)行 maven 目標(biāo)。
- 可以使用 netbeans 自身的控制臺(tái)查看 maven 命令的輸出。
- 可以更新 maven 與 ide 的依賴。
- 可以在 netbeans 中啟動(dòng) maven 的構(gòu)建。
- netbeans 基于 maven 的 pom.xml 來(lái)實(shí)現(xiàn)自動(dòng)化管理依賴關(guān)系。
- netbeans 可以通過(guò)自己的工作區(qū)解決 maven 的依賴問(wèn)題,而無(wú)需安裝到本地的 maven 倉(cāng)庫(kù),雖然需要依賴的項(xiàng)目在同一個(gè)工作區(qū)。
- netbeans 可以自動(dòng)從遠(yuǎn)程 moven 庫(kù)上下載需要的依賴和源碼。
- netbeans 提供了創(chuàng)建 maven 項(xiàng)目,pom.xml 文件的向?qū)А?/li>
- netbeans 提供了 關(guān)于maven 倉(cāng)庫(kù)的瀏覽器,使您可以查看本地存儲(chǔ)庫(kù)和注冊(cè)在外部的 maven 倉(cāng)庫(kù)。
1. 在 netbeans 里打開(kāi)一個(gè) maven 項(xiàng)目
- 打開(kāi) netbeans
- 選擇?file menu > open project?選項(xiàng)
- 選擇項(xiàng)目的路徑,即使用 maven 創(chuàng)建一個(gè)項(xiàng)目時(shí)的存儲(chǔ)路徑。假設(shè)我們創(chuàng)建了一個(gè)項(xiàng)目: consumerbanking. 通過(guò)?maven 構(gòu)建 java 項(xiàng)目?查看如何使用 maven 創(chuàng)建一個(gè)項(xiàng)目。
目前為止,你已經(jīng)可以在 netbeans 里看到 maven 項(xiàng)目了??匆幌耤onsumerbanking 項(xiàng)目的 libraries 和 test libraries. 你可以發(fā)現(xiàn) netbeans 已經(jīng)將 maven 所依賴的都添加到了它的構(gòu)建路徑里了。
2. 在 netbeans 里構(gòu)建一個(gè) maven 項(xiàng)目
好了,我們來(lái)使用 netbeans 的編譯功能來(lái)構(gòu)建這個(gè) maven 項(xiàng)目
- 右鍵點(diǎn)擊 consumerbanking 項(xiàng)目打開(kāi)上下文菜單。
- 選擇 "clean and build" 選項(xiàng)
maven 將會(huì)開(kāi)始構(gòu)建該項(xiàng)目。你可以在 netbeans 的終端里查看輸出的日志信息:
netbeans: executing 'mvn.bat -dnetbeans.execution=true clean install' netbeans: java_home=c:\program files\java\jdk1.6.0_21 scanning for projects... ------------------------------------------------------------------------ building consumerbanking task-segment: [clean, install] ------------------------------------------------------------------------ [clean:clean] [resources:resources] [warning] using platform encoding (cp1252 actually) to copy filtered resources, i.e. build is platform dependent! skip non existing resourcedirectory c:\mvn\consumerbanking\src\main\resources [compiler:compile] compiling 2 source files to c:\mvn\consumerbanking\target\classes [resources:testresources] [warning] using platform encoding (cp1252 actually) to copy filtered resources, i.e. build is platform dependent! skip non existing resourcedirectory c:\mvn\consumerbanking\src\test\resources [compiler:testcompile] compiling 1 source file to c:\mvn\consumerbanking\target\test-classes [surefire:test] surefire report directory: c:\mvn\consumerbanking\target\surefire-reports ------------------------------------------------------- t e s t s ------------------------------------------------------- running com.companyname.bank.apptest tests run: 1, failures: 0, errors: 0, skipped: 0, time elapsed: 0.023 sec results : tests run: 1, failures: 0, errors: 0, skipped: 0 [jar:jar] building jar: c:\mvn\consumerbanking\target\consumerbanking-1.0-snapshot.jar [install:install] installing c:\mvn\consumerbanking\target\consumerbanking-1.0-snapshot.jar to c:\users\gb3824\.m2\repository\com\companyname\bank\consumerbanking\ 1.0-snapshot\consumerbanking-1.0-snapshot.jar ------------------------------------------------------------------------ build successful ------------------------------------------------------------------------ total time: 9 seconds finished at: thu jul 19 12:57:28 ist 2012 final memory: 16m/85m ------------------------------------------------------------------------
3. 在 netbeans 里運(yùn)行應(yīng)用程序
現(xiàn)在,右鍵點(diǎn)擊 app.java 文件。選擇 run file 選項(xiàng)。你可以在終端看到如下結(jié)果:
netbeans: executing 'mvn.bat -dexec.classpathscope=runtime -dexec.args=-classpath %classpath com.companyname.bank.app -dexec.executable=c:\program files\java\jdk1.6.0_21\bin\java.exe -dnetbeans.execution=true process-classes org.codehaus.mojo:exec-maven-plugin:1.1.1:exec' netbeans: java_home=c:\program files\java\jdk1.6.0_21 scanning for projects... ------------------------------------------------------------------------ building consumerbanking task-segment: [process-classes, org.codehaus.mojo:exec-maven-plugin:1.1.1:exec] ------------------------------------------------------------------------ [resources:resources] [warning] using platform encoding (cp1252 actually) to copy filtered resources, i.e. build is platform dependent! skip non existing resourcedirectory c:\mvn\consumerbanking\src\main\resources [compiler:compile] nothing to compile - all classes are up to date [exec:exec] hello world! ------------------------------------------------------------------------ build successful ------------------------------------------------------------------------ total time: 1 second finished at: thu jul 19 14:18:13 ist 2012 final memory: 7m/64m ------------------------------------------------------------------------
相關(guān)文章
- JDBC 教程
- JDBC 驅(qū)動(dòng)類(lèi)型
- JDBC 連接數(shù)據(jù)庫(kù)范例
- JDBC 連接數(shù)據(jù)庫(kù)步驟
- JDBC Statement, PreparedStatement 和 CallableStatement
- JDBC ResultSet 結(jié)果集
- JDBC Resultset 結(jié)果集范例
- JDBC 事務(wù)保存點(diǎn)范例
- Scala 教程
- Scala 簡(jiǎn)介
- Scala 類(lèi)和對(duì)象
- Scala 文件 I/O
- Spring 教程
- Spring 模塊
- Spring 依賴注入
- Spring 自動(dòng)裝配
- Spring MVC教程
- Spring MVC表單標(biāo)簽庫(kù)
- Spring security