Tomcat 客户端部署程序错误 (JarScannerCallback)
也许我错过了一件大事,但我在 Tomcat Client Deployer 方面遇到了问题。我按照指示安装了 Ant(设置环境变量 Path、JAVA_HOME 和 ANT_HOME)。它有效,但是当我尝试“编译”我的 Web 应用程序时,我在 JarScannerCallback 上收到 NoClassDefFoundException。任何人都知道为什么会发生这种情况?
谢谢
Maybe there is a huge thing I missed, but I am having an issue with Tomcat Client Deployer. I installed Ant as indicated (set the environment veriables Path, JAVA_HOME and ANT_HOME). It works, but when I try to "compile" my web appliation, I get a NoClassDefFoundException on JarScannerCallback. Any one has an idea on why this is happening?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Tomcat 库需要位于 ant & 中贾斯珀类路径。尝试在 build.xml 中插入以下行。首先声明一个属性,其中包含 tomcat 安装目录的有效路径:
...然后扩展deployer.classpath,如下所示:
...和 javac:
就是这样。
Tomcat libs need to be in the ant & jasper classpath. Try insert following lines in your build.xml. First declare a property with the valid path to your tomcat install directory:
...then extend deployer.classpath as follows:
...and javac:
that's it.