-1
我開始使用播放框架2的一個小項目。反正我有使用會話此錯誤: (圖) http://i.stack.imgur.com/RAnmz.png如何使用播放框架2上的會話解決此錯誤
類在這裏: https://github.com/jstar88/LibreTitan/blob/master/app/services/Authenticator.java
你能告訴我問題出在哪裏?謝謝
我開始使用播放框架2的一個小項目。反正我有使用會話此錯誤: (圖) http://i.stack.imgur.com/RAnmz.png如何使用播放框架2上的會話解決此錯誤
類在這裏: https://github.com/jstar88/LibreTitan/blob/master/app/services/Authenticator.java
你能告訴我問題出在哪裏?謝謝
我想這是因爲session()是一個靜態調用,它是API中Controller的一部分,如鏈接http://www.playframework.com/documentation/api/2.0.4/java/index.html所示。
爲了解決這個問題,你既可以靜態地引用,或有你的服務擴展控制器(我不能想象你會想)
public static boolean isCurrentUserLogged() {
return play.mvc.Controller.session("id_user") != null;
}