Play Framework 2.4.x使用application.conf作为配置并在内部创建Actor System。使用DI我们可以获得actor系统参考。
我有一个要求,我们需要传递除application.conf之外的自己的配置来创建Actor System。
我们如何在Play Framework 2.4.x中覆盖ActorSystem创建
答案 0 :(得分:0)
我认为我找到了解决方案,与我看到的略有不同,但它解决了我的问题。
编写一个扩展GuiceApplicationLoader覆盖构建器方法的类。在构建器方法中,根据您的要求更改配置。
有关https://www.playframework.com/documentation/2.4.x/ScalaDependencyInjection的信息检查,请查找“扩展GuiceApplicationLoader”