首页 > maven 插件:Tomcat7

maven 插件:Tomcat7

配置 Tocmat 用户

> vim $TOMCAT_PATH%/conf/tomcat-users.xml

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

配置 maven

    <server><id>tomcat7id><username>tomcatusername><password>linuxmintpassword>server>

pom.xml 基本配置

    <plugins><plugin><groupId>org.apache.tomcat.mavengroupId>  <artifactId>tomcat7-maven-pluginartifactId>  <version>2.1version><configuration><server>tomcat7server>configuration>plugin>  plugins>

也可以直接把tomcat 信息配置在 pom.xml 内.

    build > plugins<plugins><plugin><groupId>org.apache.tomcat.mavengroupId><artifactId>tomcat7-maven-pluginartifactId><version>2.1version><configuration><url>http://localhost:8080/manager/texturl><path>/${project.build.finalName}path><server>tomcat7server><username>tomcatusername> <password>linuxmintpassword>configuration>plugin>plugins>

部署的 URL

tomcat6 http://localhost:8080/manager/html
tomcat7 http://localhost:8080/manager/text

部署

> mvn tomcat7:deploy

重新部署

> mvn tomcat7:redeploy

转载于:https://www.cnblogs.com/alexck/p/3421922.html

更多相关:

  • 下面是几个常用命令行工具,先截图,再描述 在生成环境调试的命令 sudo gdb ./traffic_server -p $(pidof traffic_server)  -batch  -x  [macro_file] 参考文献 [1].ATS Debugging Fall Summ...

  • Page1.aspx:   <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Page1.aspx.cs" Inherits="Application.跨页面传送.Page1" %>  

  • 在下面的例子中,我们在一个 .aspx 文件中声明了一个 TextBox 控件和一个 Label 控件。当您更改了 TextBox 中的值,并且在 TextBox 外单击时,change 子例程就会被执行。change 子例程会向 Label 控件写一条文本: