Ant Tomcat 7重新加载FileNotFoundException

我正在尝试从ant重新加载Web应用程序。 但我找不到错误:

D:\project\triplelands\ocbcfilesending\src\com.ocbcmcd.monitoring\build.xml:90: java.io.FileNotFoundException: http://localhost:8080/manager/reload?path=%2Fhello 

我也尝试直接访问: http:// localhost:8080 / manager / reload?path = / hello我的浏览器收到404错误代码:

我的配置是:

My Ant Script

    

build.properties

 appserver.home=C:/appserv/apache6 #for Tomcat 5 use $appserver.home}/server/lib #for Tomcat 6 use $appserver.home}/lib appserver.lib=${appserver.home}/lib deploy.path=${appserver.home}/webapps tomcat.manager.url=http://localhost:8080/manager tomcat.manager.username=root tomcat.manager.password=root 

tomcat用户配置

  

谢谢你的建议

我也遇到了这个问题,同时将我从Tomcat 6工作的项目移动到Tomcat 7.本质上,管理器URL中有一个更改,它被分成几个,每个的使用取决于你如何与它的接口:

 * /manager/html for the HTML GUI * /manager/text for the text interface * /manager/jmxproxy for the JMX proxy * /manager/status for the status pages 

对于ant,您要使用/ manager / text。 那么,您需要编辑build.properties文件,如下所示:

 tomcat.manager.url=http://localhost:8080/manager/text 

希望有所帮助!

要使它在Tomcat 7上运行,您需要以下内容 –

build.xml文件

           

build.properties

 tomcat.manager.url=http://localhost:8080/manager/text tomcat.manager.username=tomcat tomcat.manager.password=s3cret 

的tomcat-users.xml中

  

欢呼,亚历克西

tomcat 7.0中的tomcat用户配置应该是这样的: