当我尝试使用ant任务在tomcat 7.0.30中取消部署webapp时,它给我的消息是
失败 - 尝试通过GET请求使用命令/取消部署,但POST是 需要
但是我找不到解决这个问题的方法。
我的蚂蚁任务是错的吗?还是tomcat配置?
我的蚂蚁任务是......
<path id="catalina-ant-classpath">
<fileset dir="${tomcat.base.dir}/lib">
<include name="catalina-ant.jar"/>
<include name="tomcat-coyote.jar"/>
<include name="tomcat-util.jar"/>
</fileset>
<fileset dir="${tomcat.base.dir}/bin">
<include name="tomcat-juli.jar"/>
</fileset>
</path>
<taskdef name="undeploy" classname="org.apache.catalina.ant.UndeployTask" classpathref="catalina-ant-classpath"/>
<target name="undeploy" description="undeploy from tomcat">
<undeploy
url="http://localhost:8080/manager/html"
username="admin"
password="password"
path="/mywebapp"
/>
</target>
我的tomcat-users.xml是......
<user username="admin" password="password" roles="manager-gui, manager-jmx, manager-status"/>
答案 0 :(得分:2)
尝试使用此网址而不是以“html”结尾的网址:
http://localhost:8080/manager/text
您可能还需要在tomcat-users.xml中将这些角色添加到您的用户:
manager-script, admin-script