ここで説明されているように、Play サブプロジェクト機能の拡張テストを行っています: http://www.playframework.com/documentation/2.0/SBTSubProjects。しかし、私はエラーが発生しています:
Assets is already defined as object Assets
github でホストされているサンプル アプリケーション: https://github.com/adis-me/PlayStrap
ここで説明されているように、サブプロジェクトのアセット コントローラーを定義しました:アセット コントローラーの説明、メイン プロジェクトの場合でも、エラーがポップアップし続けます。プロジェクトの何が問題になっていますか?
コントローラ
package com.company.playstrap.controllers;
import controllers.AssetsBuilder;
public class Assets {
public static controllers.AssetsBuilder delegate = new AssetsBuilder();
}
ルートファイル
# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~
# Home page
GET / com.company.playstrap.controllers.Application.index()
# Include sub projects
-> /common common.Routes
-> /admin admin.Routes
-> /website website.Routes
# Map static resources from the /public folder to the /assets URL path
GET /assets/*file com.company.playstrap.controllers.Assets.delegates.at(path="/public", file)