eclipse 部署maven到tomcat
程序员文章站
2024-01-13 15:10:58
...
1、Tomcat6,tomcat-users.xml
<role rolename="manager-gui"/>
<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="admin" password="admin" roles="manager-gui,manager-script,manager-jmx,manager-status,admin-script,admin-gui"/>
<user username="tomcat" password="tomcat" roles="manager-gui"/>
保证
http://localhost:8080/manager/deploy不会返回403
2、pom.xml
<build>
<finalName>ssm-web2</finalName>
<plugins>
<plugin>
<!-- 3个可用插件 -->
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat6-maven-plugin</artifactId> <!-- 命令为tomcat6:redeploy -->
<!-- <groupId>org.apache.tomcat.maven</groupId> -->
<!-- <artifactId>tomcat7-maven-plugin</artifactId> --> <!-- 命令为tomcat7:redeploy -->
<!-- <groupId>org.codehaus.mojo</groupId> -->
<!-- <artifactId>tomcat-maven-plugin</artifactId> --> <!-- 命令为tomcat:redeploy -->
<!-- <version>2.2</version> -->
<configuration>
<url>http://localhost:8080/manager</url> <!-- tomcat6部署管理路径 -->
<!--<url>http://localhost:8080/manager/text</url> tomcat7部署管理路径 -->
<username>admin</username> <!-- tomcat的管理员账号 -->
<password>admin</password>
<port>8080</port>
<path>/ssm-web2</path> <!-- 部署路径 -->
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<!-- 运行redeploy命令前,要能正常访问http://localhost:8080/manager-->
</configuration>
</plugin>
</plugins>
</build>
上一篇: php ubb代码解析程序
下一篇: VS Code的配置
推荐阅读
-
eclipse maven tomcat
-
eclipse 部署maven到tomcat
-
maven快速入门番外篇——Eclipse下载GitHub上FastDFS-Client客户端源码并转化成maven工程以及打包到本地maven仓库
-
记一次通过jenkins部署到linux上的tomcat服务器(模拟svn钩子程序)
-
jenkins自动集成部署war包到tomcat
-
maven web项目通过插件实现热部署到Tomcat
-
愁人的 SpringCloud 微服务多模块打war包部署到tomcat,亲测成功
-
SpringBoot打包项目成war包,并部署到服务器的tomcat上
-
淘淘商城第117讲——使用maven的tomcat插件来实现Tomcat热部署
-
Eclipse中web项目部署至Tomcat步骤