我应该将 weblogic-application.xml 放在 Maven 2 项目中的什么位置?
我应该把 weblogic-application.html 放在哪里? xml
在我的 Maven 2 项目中,以便 Maven 将其放置在目标 EAR 工件的 META_INF
中?
Where do I put weblogic-application.xml
in my Maven 2 project so that Maven places it in META_INF
in the target EAR artifact?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
weblogic-application.xml
应打包在最终 EAR 的META-INF
目录中(位于标准application.xml
旁边)。使用 Maven EAR 插件,额外文件的默认位置包含在 EAR 中(您可以使用
earSourceDirectory
参数)是src/main/application
。因此,以下内容可以工作(使用默认值):The
weblogic-application.xml
should be packaged in theMETA-INF
directory of your final EAR (next to the standardapplication.xml
).With the Maven EAR Plugin, the default location for extra files to include in the EAR (that you can control with the
earSourceDirectory
parameter) issrc/main/application
. So the following would work (using the defaults):