Gradle 为 i18n 和 PrettyFaces 构建配置文件
是否可以在gradle中定义不同的配置文件?我已经编写了一个 WebApplication,我想使用生产设置来部署它。此外,我的应用程序正在使用 PrettyFaces。由于我使用不同的两种语言,我也想要一个特定于语言的构建。这是我的用例: Production/en, Production/ru
使用特定语言的构建指示使用哪种数据库以及哪种语言是默认语言。此外,url (PrettyFaces) 是不同的文件。在我看来,我需要不同的 web.xml 和不同的 beautiful-faces.xml ?
提前致谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是一些选项:
为每个设置创建一个任务,以便您可以执行
gradle buildEn
或gradle buildRu
来区分构建。您可以手动编写每个任务,也可以动态生成它们。将项目属性传递给您的构建,例如
gradle build -Plang=ru
。然后,您可以从任务中引用lang
并在那里执行逻辑。如果您不喜欢每次都传递属性,也可以在 gradle.properties 文件中指定项目属性。 无论如何检查一下。可能不是您想要的,但是如果某个构建图中存在任务(在示例中,当图表包含
时,将执行附加逻辑发布
任务)。祝你好运
Here are some options:
Create a task for each setting, so you can do
gradle buildEn
orgradle buildRu
to differentiate the builds. You can write each task manually, or dynamically generate them.Pass a project property to your build, e.g.
gradle build -Plang=ru
. Then you can referencelang
from your task and do the logic there. Project properties can also be specified ingradle.properties
file if you don't like passing the property every time. Anyway check this out.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