我正在玩Play! 2.1.1定义多个子项目的应用程序。这是我的Build.scala:
val lfamName = "lfam"
val lfamVersion = "1.0-SNAPSHOT"
val lfamDirectory = "subprojects/" + lfamName
lazy val lfam = play.Project(lfamName, lfamVersion, appDependencies, path = file(lfamDirectory))
val mainName = "main"
val mainVersion = "1.0-SNAPSHOT"
lazy val main = play.Project(mainName, mainVersion, appDependencies)
.settings().dependsOn(lfam).aggregate(lfam)
结果结构:
app
└ controllers
└> Application.scala
└ models
└ views
└> index.scala.html
└ assets
└ stylesheets
└> main.less
conf
└> application.conf
└> routes
subprojects
└ lfam
└ conf
└> lfam.routes
└ app/controllers
└> Application.scala
└> Assets.scala
└ app/models
└ app/views
└> index.scala.html
└ assets
└ stylesheets
└> main.less
消息来源:
路由
GET / controllers.Application.index
-> /lfam lfam.Routes
GET /assets/*file controllers.Assets.at(path="/public", file)
lfam.routes
GET / controllers.lfam.Application.index
GET /assets/*file controllers.lfam.Assets.at(path="/public", file)
Assets.scala
package controllers.lfam
object Assets extends controllers.AssetsBuilder
Application.scala(只是包名在项目之间更改)
package controllers(.lfam)
import play.api._
import play.api.mvc._
object Application extends Controller {
def index = Action {
Ok(views.html.index())
}
}
main.less(主要项目)
@main-color: #0000ff;
h1 {
color: @main-color;
}
main.less(lfam项目)
@main-color: #ff0000;
h1 {
color: @main-color;
}
index.scala.html(主项目)
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" href="@routes.Assets.at("stylesheets/main.css")">
</head>
<body>
<h1>Header</h1>
</body>
</html>
index.scala.html(lfam项目)
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" href="@lfam.routes.Assets.at("stylesheets/main.css")">
</head>
<body>
<h1>Header</h1>
</body>
</html>
当显示子项目索引(/ lfam /)时,标题仍为蓝色。但是,如果我将main.less文件从子项目重命名为lfam.less(以及html中的相应文件),标题将变为红色(正如预期的那样)。
是否可以在多个子项目中拥有多个具有相同名称的资产?在第一种情况下游戏怎么没有为我提供正确的css文件而是找到第二种呢?
由于
答案 0 :(得分:1)
自all projects in a multi-project setup use the same classloader以来,这是不可能的。
使用ClassLoader.getResource
(source)加载资产。就像Java源代码一样,完全限定的资源名称必须是唯一的。