Ant部署到tomcat 7

时间:2013-04-19 11:04:29

标签: ant tomcat7

我已将Tomcat服务器从版本6更改为7,现在我的部署失败了。

起初我的蚂蚁构建如下,并得到403错误

<taskdef resource="org/apache/catalina/ant/catalina.tasks" classpathref="x.classpath" />

<target name="tomcatdeploy" depends="tomcatundeploy,war">
  <deploy url="http://localhost/manager/html" username="x" password="x" path="/xx" war="file:x.war"/>                   
</target>

我在互联网上找到了几个来源,将manager/html更改为manager/text,并在tomcat用户文件中添加了manager-scriptadmin-script角色。

我现在得到的错误是

  java.net.HttpRetryException: cannot retry due to server authentication, in streaming mode

我发现这可能是因为我部署的.war文件的大小约为250M,但是我找不到如何从ant部署到tomcat 7的解决方案。

1 个答案:

答案 0 :(得分:0)

我终于找到了一篇关于这个问题的综合帖子: http://paulgrenyer.blogspot.co.at/2011/11/catalina-ant-for-tomcat-7.html