1

我正在尝试使用播放框架创建一个管理子项目。在管理员调用http://localhost:9000/admin/index中,我无法访问管理员视图,资产存在问题。无法弄清楚出了什么问题:

val appDependencies = Seq(
// Add your project dependencies here,
javaCore,
javaJdbc,
javaEbean)

  // admin module
  val admin = play.Project(appName + "-admin", appVersion, appDependencies, path = file("modules/admin"))

  val main = play.Project(appName, appVersion, appDependencies, path = file(".")).settings( 
  // Add your own project settings here      
  ).dependsOn(admin).aggregate(admin)

项目结构如下所示:

.
|-app
|---controllers
|---views
|-conf
|-logs
|-modules
|---admin
|-----app
|-------controllers
|---------admin
|-------views
|---------admin
|-----conf
|-----public
|-----test
|-project
|-public
|---images
|---javascripts
|---stylesheets
|-test

配置/路由

    GET     /                           controllers.Application.index()

    ->  /admin admin.Routes

    # Map static resources from the /public folder to the /assets URL path
    GET     /assets/*file               controllers.Assets.at(path="/public", file)

/modules/admin/conf/admin.routes

    GET     /index                           controllers.admin.Application.index()

    # Map static resources from the /public folder to the /assets URL path
    #GET     /assets/*file               controllers.admin.Assets.at(path="/public", file)
    GET     /assets/*file               controllers.Assets.at(path="/public", file)

在这里admin.routes它不适用于此:GET /assets/*file controllers.admin.Assets.at(path="/public", file)

4

1 回答 1

0

实际上GET /assets/*file controllers.admin.Assets.at(path="/public", file)in admin 不是必需的,也不是/assets/*file controllers.Assets.at(path="/public", file)在 admin 中。

但是这些观点需要被称为不同的。例如viewsadmin(views/admin/不起作用)

于 2013-04-13T15:02:08.400 回答