自分以外の人がthis linkで提示されたすべてのソリューションを試して、Googleの結果のすべてのページを通過した後、結果を見つけることができませんでした。私は、TomcatへのMavenプロジェクトを展開しようとしていますが、私は、次のプリントアウトを取得:同じエラーでTomcatマネージャを呼び出せません:ソフトウェアの接続が中止されました
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 11.178 s
[INFO] Finished at: 2016-08-03T15:01:17-04:00
[INFO] Final Memory: 15M/105M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.tomcat.maven:tomcat7-maven-plugin:2.2:deploy (default-cli) on project Project_2: Cannot invoke Tomcat manager: Software caused connection abort: socket write error -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
mvn tomcat7:deploy
と
mvn tomcat7:redeploy
結果の両方を。 (家庭Mavenと.m2フォルダの両方で)
のpom.xml
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<server>tomcat7</server>
<path>/Project_2</path>
<port>8085</port>
<url>http://localhost:8085/manager/text</url>
<update>true</update>
<username>manager</username>
<password>xxxx</password>
</configuration>
</plugin>
のtomcat-users.xmlの
<role rolename="manager-script"/>
<role rolename="manager-gui"/>
<role rolename="manager-jmx"/>
<role rolename="manager-status"/>
<role rolename="admin-gui"/>
<user username="admin1" password="xxxx" roles="manager-gui,manager-script,manager-jmx,manager-status,admin-gui" />
<user username="manager" password="xxxx" roles="manager-script,admin-script" />
のsettings.xml
<server>
<id>tomcat7</id>
<username>manager</username>
<password>xxxx</password>
</server>
私は承知しています私のTomcatバージョンは8ですが、Borgy Manotoyによると、Tomcat7プラグインはTomcat 8で動作します。