码迷,mamicode.com
首页 > 系统相关 > 详细

eclipse maven tomcat 部署

时间:2015-05-07 16:15:05      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:

1.tomcat-users.xml

ps:eclipse 中Servers 中的文件 

<role rolename="manager-gui" />
<role rolename="manager-script" />
<user username="admin" password="admin" 
    roles="manager-gui, manager-script" />

2.项目中的pom.xml

    <profiles>
        <profile>
            <id>dev</id>
            <properties>
                <env>dev</env>
                <deploy.url>http://localhost:8080/manager/</deploy.url>
            </properties>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
        </profile>
        <profile>
            <id>test</id>
            <properties>
                <env>test</env>
            </properties>
        </profile>
        <profile>
            <id>product</id>
            <properties>
                <env>product</env>
            </properties>
        </profile>
    </profiles>

        
        #plugins
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>tomcat-maven-plugin</artifactId>
                <configuration>
                    <url>http://localhost:8080/manager/text</url>
                    <server>tomcat</server>
                    <path>/</path>
                    <username>admin</username>
                    <password>admin</password>
                </configuration>
                <version>1.1</version>
            </plugin>

 

3.启动tomcat

4.命令行模式下

cd ${工程根目录}
mvn tomcat:redeploy

 

eclipse maven tomcat 部署

标签:

原文地址:http://www.cnblogs.com/mmdsnb/p/4485080.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!