路由覆盖play2.4 maven libraryDependencies

时间:2015-10-14 12:51:22

标签: maven playframework-2.4

我一直在尝试将使用子项目结构管理的旧的,几乎不可用的play2.2库迁移到具有分离项目和play2.4的maven存储库

到目前为止,每当我将项目添加到另一个项目时,对于libraryDependencies列表,该项目的路由都会覆盖本地路由。

因此,例如,如果本地项目的路由如下所示:

GET     /                           controllers.Application.index
GET     /fun                        controllers.FunController.fun

GET     /assets/*file               controllers.Assets.versioned(...)

依赖项目中的那个是这样的:

GET     /                           controllers.Application.index
GET     /assets/*file               controllers.Assets.versioned(...)

我最终没有“有趣”的电话。

我知道它们完全一样,但这就是重点,它不是合并它们或忽略传入路线,这是可以接受的。它超越了它。

有什么想法吗?

0 个答案:

没有答案