我正在开发一个多租户 Play Framework 2.1 应用程序。我打算重写 GlobalSettings 类的 onRequest 方法,以根据请求的子域加载和设置自定义配置。问题是,我看不出这在 Play 2.x 中是如何实现的。
启动服务器时,我可以在命令行覆盖系统属性,但是如何在 Java 代码中为每个请求以编程方式执行此操作?
代码看起来像这样(我假设):
@Override
public play.mvc.Action onRequest(Request request, Method actionMethod) {
//Look up configuration settings in Cache based on request subdomain
//(i.e. Cache.get("subdomain.conf"))
//if not in cache:
//load appropriate configuration file for this subdomain (java.io.File)
//set new configuration from file for this request
//cache the configuration for future use in a new thread
//else
//set configuration from cache for this request
return super.onRequest(request, actionMethod);
}
}
查找 URL 和获取/设置缓存很容易,但我无法弄清楚如何以编程方式为 Play Framework 2.1 设置新配置,并且文档对此类内容稍有了解。
有什么想法吗?有人知道更好,更有效的方法吗?