アドバイスをお願いします。私はこれに従っています: https://www.playframework.com/documentation/2.2.x/SBTSubProjects
私が間違っていることは何ですか?サブプロジェクトのルートにエラーがあります:
shopping.routes:5: object Application is not a member of package controllers.shopping
私の shopping.routes:
GET /index controllers.shopping.Application.index()
GET /assets/*file controllers.shopping.Assets.at(path="/public", file)
私の shopping.controllers.Application クラス:
package controllers.shopping
import play.api._
import play.api.mvc._
import views.html._
public Class Application extends Controller {
public Result index() {
return ok("shopping");
}
}
私のメインのbuild.sbtファイル:
import play.Project._
name := "svp"
version := "2.0.0_(20140725)"
libraryDependencies ++= Seq(
javaJdbc,
javaJpa,
"org.hibernate" % "hibernate-entitymanager" % "3.6.9.Final",
"mysql" % "mysql-connector-java" % "5.1.27",
"org.mindrot" % "jbcrypt" % "0.3m",
cache
)
playJavaSettings
lazy val shopping = project.in(file("modules/shopping"))
lazy val main = project.in(file(".")).dependsOn(shopping).aggregate(shopping)