覆盖 WAR 类目录
如果您使用 Ant 通过 war
任务创建 WAR,那么(如所解释的 这里)它会自动在WAR中创建一个WEB_INF/classes/
目录。我想将生成的 classes/
目录的名称更改为 classpath/
,但不知道如何更改。
如果可能的话,有人会提供一个代码示例以及对说明如何执行此操作的文档的引用(我很好奇!)。谢谢!
If you use the Ant to create your WAR via the war
task, then (as explained here) it will automatically create a WEB_INF/classes/
directory in the WAR. I would like to change the name of this generated classes/
directory to, say, classpath/
and can't figure out how.
If this is possible, would someone provide a code example as well as a reference to the documentation that shows how to do this (I'm curious!). Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不应该将
类
的名称更改为其他名称。WAR
文件的目录结构是标准的,并为应用程序的所有 .class 文件定义了WEB-INF\classes
You shouldn't change the name of the
classes
to something else.The directory structure of a
WAR
file is standard and defines aWEB-INF\classes
for all the .class files of your application