Play 2.4 中的 Global.getControllerInstance 等价物是啥?

Posted

技术标签:

【中文标题】Play 2.4 中的 Global.getControllerInstance 等价物是啥?【英文标题】:What is an equivalent to Global.getControllerInstance in Play 2.4?Play 2.4 中的 Global.getControllerInstance 等价物是什么? 【发布时间】:2015-07-17 16:14:57 【问题描述】:

我正在将 (Scala) Play 2.3 应用程序迁移到 2.4。以前我有一个自制机制来构建我的Controller 对象,并使用Global.getControllerInstance 将它们提供给 Play。这在 2.4 中不再可用。有没有一种简单的方法可以达到同样的效果?我宁愿不立即切换到使用 Guice。

【问题讨论】:

【参考方案1】:

一种选择是使用 Guice 模块外观来包装您的自定义控制器生成器。您只需要编写一个 Guice 类,Play 将使用它来注入您自定义生成的实例,而无需进行任何其他更改。

这是一个 Java 示例。 (抱歉,我手头没有 scala 示例)。

package com.example;
class ControllerProviderModule extends AbstractModule 

    @Provides
    MyController1 providesMyController1() 
        // Create MyController1 and return it.
    

    @Provides
    MyController2 providesMyController2() 
        // Create MyController2 and return it.
    

    @Override
    protected void configure() 
        // Alternatively, use other approaches to bind controller classes to your custom generated instances 
    

将您的模块添加到 Play。

play.modules.enabled += "com.example.ControllerProviderModule"

【讨论】:

以上是关于Play 2.4 中的 Global.getControllerInstance 等价物是啥?的主要内容,如果未能解决你的问题,请参考以下文章

将 Play 框架中的 WebSockets 从 2.4 版转换为 2.6 版

在启动时向 Play 2.4 中的演员注入服务

Play 2.4 Slick 3.0 - 删除表中的所有行

子项目 Play 2.4 中的 Ebean 增强

无法从 Play 2.4 中的 WebSocket 返回 Future[JsValue] 内的 json

如何在 play 2.4 中的 scala 模板中设置类型列表字段的值?