2

我正在开发一个 SparkJava(不是 Apache Spark)应用程序,我想在前过滤器和后路由之间共享一个对象。过滤器和路由定义在不同的类中。我不愿意继续进行会话,因为它是一个移动应用程序 json api,从理论上讲,它应该是无会话的。变量范围应该是从请求处理的开始到结束。

    before(Main.API_PROTECTED + "/*", (req, res) -> {
        String token = req.headers("Authorization");
        if (token == null | "".equals(token)) {
            halt(401, "You're not welcome.");
        } else {
            Partner partner = new PartnerDAO().getPartnerByToken(token.replace("Bearer ", ""));
            if (partner == null) {
                halt(401, "You're not welcome.");
            }
        }
    });

上面有上面的过滤器,我想从中与下面的 post 路由共享合作伙伴对象:

        post(Main.API_PROTECTED + "/vendors",
            (req, res) -> {
                // Do stuff to insert Vendors in the Database, verifying access control using the partner object
                return "";
            });

也许在未来,应用程序需要扩展,所以请记住,可能有多个节点运行它。

4

1 回答 1

4

将对象添加到过滤器中的请求。

 request.attribute("myObject", "my value");

在帖子中查找

request.attribute("myObject");  // "my value"
于 2015-10-19T06:28:38.680 回答