除了tomcat7-maven-plugin之外,我没有找到任何tomcat-maven-plugin。 我可以将它与apache-tomcat-9.0.0.M15一起使用吗?
答案 0 :(得分:9)
是的,你可以使用它。我试过,它在tomcat 9上为我工作
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<url>http://localhost:8080/manager/text</url>
<server>TomcatServer</server>
<path>/myapp</path>
</configuration>
</plugin>
Maven目标:
mvn tomcat7:deploy
mvn tomcat7:undeploy
mvn tomcat7:redeploy
注意:不要忘记在tomcat-users.xml和maven settings.xml中添加tomcat用户
Tomcat的user.xml
<?xml version='1.0' encoding='utf-8'?>
<tomcat-users>
<role rolename="manager-gui"/>
<role rolename="manager-script"/>
<user username="admin" password="password" roles="manager-gui,manager-script" />
</tomcat-users>
manager-script 角色使应用程序(即maven)能够将jar / war部署到应用程序服务器。
Maven文件settings.xml
<?xml version="1.0" encoding="UTF-8"?>
<settings ...>
<servers>
<server>
<id>TomcatServer</id>
<username>admin</username>
<password>password</password>
</server>
</servers>
</settings>
答案 1 :(得分:2)
如其他答案所述, tomcat7-maven-plugin 仍可用于部署到运行中的带有管理器应用程序的Tomcat 9中。但是,要运行嵌入式 Tomcat 9,请尝试使用Cargo插件:
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.7.6</version>
<configuration>
<container>
<containerId>tomcat9x</containerId>
<type>embedded</type>
</container>
</configuration>
</plugin>
开始于:
mvn org.codehaus.cargo:cargo-maven2-plugin:run
答案 2 :(得分:1)
我很长时间都在寻找同一个问题的答案。现在我找到了。
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.8.3</version>
<configuration>
<container>
<containerId>tomcat9x</containerId>
<type>embedded</type>
</container>
<deployables>
<deployable>
<type>war</type>
<location>${project.build.directory}/${project.build.finalName}.war</location>
<properties>
<context>/</context>
</properties>
</deployable>
</deployables>
</configuration>
</plugin>
并运行
mvn package cargo:run