Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Play.current is deprecated in play 2.5

I am currently using Play.current in the following way.

import play.api.{Logger, Play}

object ApplicationConfig {

  val app = Play.current
  def getConfInt(key: String): Option[Int] = {
    val result = app.configuration.getInt(key)
    result
  }
}

Since migrating to 2.5, I have a warning saying that it is deprecated with

"This is a static reference to application, use DI instead"

However, the doc doesn't exactly say how am I supposed to use DI instead.

Thanks

like image 832
Scipion Avatar asked Apr 25 '16 06:04

Scipion


1 Answers

Depending on your use case you should now use Environment, ApplicationLifecycle and Configuration instead of Application

In your case you are actually interested in the configuration so the way to do this in Play 2.5.x would be like this:

class HomeController @Inject() (configuration: play.api.Configuration) extends Controller {

  def config = Action {
    Ok(configuration.underlying.getInt("some.config.key"))
  }

}

The example I provided is for a controller but you can use this approach also on other places in your application. I just didn't like the ApplicationConfig object you provided - consider refactoring it when migrating to Play 2.5.x - DI is now the way to go

like image 135
Anton Avatar answered Oct 07 '22 13:10

Anton