eclipse,myeclipse開發環境下,maven遠程部署到tomcat7伺服器(圖文)

來源:互聯網
上載者:User

標籤:

eclipse,myeclipse開發環境下,maven遠程部署到tomcat7伺服器(圖文)

有的人想在eclipse寫java Web 專案,通過maven也是一種實現的方法,可以實現java Web 專案打包成war,發布到tomcat。

在pom.xml檔案的build增加下面的代碼,相應的地方修改帳號和密碼,還有發布的名稱 , 

  第一次使用需要下載很多構建. 需耐心等待 ... ... ...

 

    <build>        <finalName>test_server</finalName>       <!-- 原有代碼 -->            <plugin>                <groupId>org.codehaus.mojo</groupId>                <artifactId>tomcat-maven-plugin</artifactId>                <version>1.1</version>                <configuration>                    <url>http://****/manager/text</url>                    <server>test</server>                    <username>test</username>                    <password>test</password>                </configuration>            </plugin>        </plugins>    </build>

或者在 setting 中配置

    <server>      <id>private-ez-tomcat</id>      <username>test</username>      <password>test</password>    </server>

在 pom.xml中引用

            <plugin>                <groupId>org.codehaus.mojo</groupId>                <artifactId>tomcat-maven-plugin</artifactId>                <version>1.1</version>                <configuration>                    <url>http://*****/manager/text</url>                    <server>private-ez-tomcat</server>                    <path>/test</path>                </configuration>            </plugin>

 

修改apache-tomcat-7.0.52-9080\conf\tomcat-users.xml檔案

 

<?xml version=‘1.0‘ encoding=‘utf-8‘?><tomcat-users>    <role rolename="admin-gui"/>    <role rolename="admin-script"/>    <role rolename="manager-gui"/>    <role rolename="manager-script"/>    <role rolename="manager-jmx"/>    <role rolename="manager-status"/>    <user username="test" password="test" roles="manager-gui,manager-script,manager-jmx,manager-status,admin-script,admin-gui"/> <role rolename="manager-jmx"/> <role rolename="manager-status"/></tomcat-users>

右擊項目

建立一個maven運行任務

 

點擊browse workspace選擇要啟動並執行項目,在 goals 填寫 tomcat:deploy或tomcat:redeploy,

網路上都說要填寫 mvn tomcat:deploy,但是在Eclipse環境下不用填寫mvn,

如果填寫了 mvn tomcat:deploy就會報錯:

[ERROR] Unknown lifecycle phase "mvn". You must specify a valid lifecycle phase or a goal in the format <plugin-prefix>:<goal> or <plugin-group-id>:<plugin-artifact-id>[:<plugin-version>]:<goal>. Available lifecycle phases are: validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy, pre-site, site, post-site, site-deploy, pre-clean, clean, post-clean. -> [Help 1][ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.[ERROR] Re-run Maven using the -X switch to enable full debug logging.[ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles:[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/LifecyclePhaseNotFoundException

 

 

 

 

轉自: http://www.cnblogs.com/taoweiji/p/3859860.html

 

eclipse,myeclipse開發環境下,maven遠程部署到tomcat7伺服器(圖文)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.