Gradle 为 i18n 和 PrettyFaces 构建配置文件

发布于 2024-12-16 12:44:52 字数 283 浏览 2 评论 0 原文

是否可以在gradle中定义不同的配置文件?我已经编写了一个 WebApplication,我想使用生产设置来部署它。此外,我的应用程序正在使用 PrettyFaces。由于我使用不同的两种语言,我也想要一个特定于语言的构建。这是我的用例: Production/en, Production/ru

使用特定语言的构建指示使用哪种数据库以及哪种语言是默认语言。此外,url (PrettyFaces) 是不同的文件。在我看来,我需要不同的 web.xml 和不同的 beautiful-faces.xml ?

提前致谢!

Is it possible to define different profiles in gradle? I've written a WebApplication and i want to deploy it with the production settings. Furthermore my app is using PrettyFaces. Since i'm using different two languages i also want a language sepcific build. Here is my use case:
production/en, production/ru

The build with a specific language indicates which db to use and which language is the default one. Furthermore the urls (PrettyFaces) are different files. In my opinion i need a different web.xml and a different pretty-faces.xml ?

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

春夜浅 2024-12-23 12:44:52

以下是一些选项:

  1. 为每个设置创建一个任务,以便您可以执行 gradle buildEngradle buildRu 来区分构建。您可以手动编写每个任务,也可以动态生成它们

  2. 将项目属性传递给您的构建,例如gradle build -Plang=ru。然后,您可以从任务中引用 lang 并在那里执行逻辑。如果您不喜欢每次都传递属性,也可以在 gradle.properties 文件中指定项目属性。 无论如何检查一下。

  3. 可能不是您想要的,但是如果某个构建图中存在任务(在示例中,当图表包含 时,将执行附加逻辑发布 任务)。

祝你好运

Here are some options:

  1. Create a task for each setting, so you can do gradle buildEn or gradle buildRu to differentiate the builds. You can write each task manually, or dynamically generate them.

  2. Pass a project property to your build, e.g. gradle build -Plang=ru. Then you can reference lang from your task and do the logic there. Project properties can also be specified in gradle.properties file if you don't like passing the property every time. Anyway check this out.

  3. Probably not what you want, but you can add behaviour to your build if a certain task is present in the build graph (in the example additional logic is executed when graph contains release task).

Good luck

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