maven tomcat eclipse
程序员文章站
2024-01-13 15:27:10
...
1、原理
http://mojo.codehaus.org/tomcat-maven-plugin/introduction.html
2、deploy a maven web application to Tomcat
http://www.avajava.com/tutorials/lessons/how-do-i-deploy-a-maven-web-application-to-tomcat.html
3、
http://www.avajava.com/tutorials/lessons/how-do-i-redeploy-a-maven-web-application-to-tomcat.html?page=2
1、tomcat-users.xml
2、settings.xml server entry
3、pom.xml
4、创建命令
http://mojo.codehaus.org/tomcat-maven-plugin/introduction.html
2、deploy a maven web application to Tomcat
http://www.avajava.com/tutorials/lessons/how-do-i-deploy-a-maven-web-application-to-tomcat.html
3、
http://www.avajava.com/tutorials/lessons/how-do-i-redeploy-a-maven-web-application-to-tomcat.html?page=2
1、tomcat-users.xml
<?xml version='1.0' encoding='utf-8'?>
<tomcat-users>
<role rolename="manager"/>
<user username="test" password="test" roles="manager"/>
</tomcat-users>
2、settings.xml server entry
<server>
<id>mytomcat</id>
<username>test</username>
<password>test</password>
</server>
3、pom.xml
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<configuration>
<url>http://192.168.1.7:8080/manager</url>
<server>mytomcat</server>
<path>/mywebapp</path>
</configuration>
</plugin>
4、创建命令
上一篇: Python日常4
下一篇: html5拖拽应用记录及注意点
推荐阅读
-
Eclipse下maven项目Tomcat部署调试
-
maven tomcat eclipse
-
Tomcat+nginx+keepalived+memcached实现双VIP负载均衡及Session会话保持
-
Eclipse的Code Templates配置
-
eclipse maven tomcat
-
eclipse 部署maven到tomcat
-
从Github检出Mina(maven)项目出现问题解决过程
-
解析php中eclipse 用空格替换 tab键
-
java performance tools / NetBeans Profiler / Sun BTrace / Eclipse MAT / IBM ISA
-
java performance tools / NetBeans Profiler / Sun BTrace / Eclipse MAT / IBM ISA