我应该将 weblogic-application.xml 放在 Maven 2 项目中的什么位置?

发布于 2024-09-16 09:59:24 字数 249 浏览 7 评论 0原文

我应该把 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋凉 2024-09-23 09:59:24

weblogic-application.xml 应打包在最终 EAR 的 META-INF 目录中(位于标准 application.xml 旁边)。

使用 Maven EAR 插件,额外文件的默认位置包含在 EAR 中(您可以使用 earSourceDirectory 参数)是src/main/application。因此,以下内容可以工作(使用默认值):

myear
|-- src
|   `-- main
|       `-- application
|           `-- META-INF
|               `-- weblogic-application.xml
`-- pom.xml

The weblogic-application.xml should be packaged in the META-INF directory of your final EAR (next to the standard application.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) is src/main/application. So the following would work (using the defaults):

myear
|-- src
|   `-- main
|       `-- application
|           `-- META-INF
|               `-- weblogic-application.xml
`-- pom.xml
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文