我使用Play!框架1.2.5playframework模塊和路線
我有一個模塊'businessmodel'。在這裏,在CONF /路線:
GET / businessmodel.Admin.index
有我有控制器:
package controllers.businessmodel;
import play.mvc.Controller;
public class Admin extends Controller { ...
和一個觀點:
/view/businessmodel/Admin/index.html
在主應用程序,它取決於該模塊上,在CONF /路由我有:
GET /admin module:businessmodel
Wh恩去MYHOST:9000 /管理我的頁面上的錯誤:
Not found
GET /admin
而且,同樣的錯誤頁面上我定義的路由列表:
GET / Application.index
GET /admin/ businessmodel.Admin.index
GET /favicon.ico 404
GET /public/ staticDir:public
* /{controller}/{action} {controller}.{action} {controller}.{action}
-
但是,如果改變模塊的路線,這條線(加上「?」):
GET /? businessmodel.Admin.index
那麼我們有不同的錯誤:
@6cpelo7bh Internal Server Error (500) for request GET /admin
Action not found Action businessmodel.Admin.index could not be found. Error raised is MODULE$
我想要定義什麼嗎?
非常感謝! – Ankur