English 中文(简体)
全球类存取课程
原标题:Access session in Global class

我非常需要我的用户对象, 所以我想把它保存在缓存中。 由于我不知道它何时会从缓存中销毁, 我想把它说成是 < code > 拦截器 。 所以我定义了以下代码 :

@Override
public Action<?> onRequest(Request request, Method actionMethod) {
    // find the user based on the userId that is stored in the session
    // scope.
    String userId = session.get("user"); // does not work
    User loggedInUser = (User) Cache.get(userId);
    if (loggedInUser == null) {
        loggedInUser = User.getUerById(userSyscode);
    }
    return super.onRequest(request, actionMethod);
}

我想,我可以使用:

session.get("user");

但是在我看来,就像 session 无法从 global level 获得一样,我做错了什么吗?

最佳回答

I had a similar problem and solved it with "action composition". http://www.playframework.org/documentation/2.0.1/JavaActionsComposition

或者,这是您压倒一切的 on request 代码代码, 所以我认为您可以做同样的事情, 将您的代码输入到 call 方法中。

public Action onRequest(Request request, Method actionMethod) {
  return new Action.Simple() {
    public Result call(Context ctx) throws Throwable {

      /* your code here */

      return delegate.call(ctx);
    }
  };
}

我不知道 session 是否直接可用, 但此时您可以从 ctx 变量中找到它。 我认为它会像 ctx.session (). get ("用户")

问题回答

在scala使用这个代码:

override def onRouteRequest(request: RequestHeader): Option[Handler] = {
    if(!request.session.get("email").isEmpty){
        //I have session with email
        request.session.apply("email") //this is for getting session
    }
}

选项 [String]

请求. session. 应用返回字符串

play框架 2 scala play.api.mvc.session





相关问题
How to create a custom validator in Play Framework 2.0?

Play 1.0 comes with a full featured validation framework base on http://oval.sourceforge.net/. With the release of 2.0, my custom validators do not work anymore. How does one create custom validator ...

How to contribute modules in Play Framework 2.0?

The original Play Framework 1.x had an elegant and simple module management system. Coupled with the Play repository, it was a great way to quickly enhance an application with third party components &...

How to define a tag with Play 2.0?

There isn t much documentation about Play 2.0 template engine. How does one create a tag using Scala template?

热门标签