1

我在不同的项目中大量使用 Crud-Module。我通过在依赖项 yaml 文件中写入“play -> crud”来激活模块。不幸的是 Message.properties 都是一样的。

如何为每个应用程序安装自己的模块?

4

2 回答 2

1

实际上,我相信 CRUD 模块应该从每个应用程序的 conf 目录中获取消息文件。您是否尝试过覆盖应用程序消息中的 CRUD 消息?

于 2013-05-28T13:06:36.137 回答
0

尝试创建自己的模块存储库

require:
    - play
    - modules -> crud 1.0

repositories:
  - modules:
      type: local
      artifact: "c:/modules/app1/[module]-[revision]"
      contains:
          - modules -> *
于 2013-05-28T13:01:57.417 回答