独立玩 WS 2.5.x

Play WS standalone for 2.5.x

我想在 Play 应用程序之外创建一个 Play 网络服务客户端。对于Play WS version 2.4.x 很容易发现是这样做的:

val config = new NingAsyncHttpClientConfigBuilder().build()
val builder = new AsyncHttpClientConfig.Builder(config)
val client = new NingWSClient(builder.build)

但是在 2.5.x 中 NingWSClient 现已弃用 - 应该使用 AhcWSClient

不幸的是,我没有找到一个完整的例子来解释 Play 之外的 AhcWsClient 的创建和使用。目前我选择这个:

import play.api.libs.ws.ahc.AhcWSClient
import akka.stream.ActorMaterializer
import akka.actor.ActorSystem

implicit val system = ActorSystem()
implicit val materializer = ActorMaterializer()
val ws = AhcWSClient()

val req = ws.url("http://example.com").get().map{
  resp => resp.body
}(system.dispatcher)

这是创建 AhcWsClient 的正确方法吗?有没有办法在没有 ActorSystem 的情况下创建 AhcWSClient

据我所知,这是创建 AhcWSClient 的正确方法 - 至少在 2.5.0 和 2.5.1 中 - 如 Scala API

中所示

当然,您总是可以使用另一个 HTTP 客户端 - Scala 有很多可用的客户端 - 例如 Newman, Spray client 等(尽管 Spray 也基于 Akka,因此您必须创建一个 actor 系统还有)

你可能正在使用编译时依赖注入,否则你只需要使用@Inject() (ws: WSClient),对吗?
文档中有一个示例:https://www.playframework.com/documentation/2.5.x/ScalaWS#using-wsclient
所以你可以在你的应用程序加载器中写这样的东西:

lazy val ws = {
  import com.typesafe.config.ConfigFactory
  import play.api._
  import play.api.libs.ws._
  import play.api.libs.ws.ahc.{AhcWSClient, AhcWSClientConfig}
  import play.api.libs.ws.ahc.AhcConfigBuilder
  import org.asynchttpclient.AsyncHttpClientConfig

  val configuration = Configuration.reference ++ Configuration(ConfigFactory.parseString(
    """
      |ws.followRedirects = true
    """.stripMargin))

  val parser = new WSConfigParser(configuration, environment)
  val config = new AhcWSClientConfig(wsClientConfig = parser.parse())
  val builder = new AhcConfigBuilder(config)
  val logging = new AsyncHttpClientConfig.AdditionalChannelInitializer() {
    override def initChannel(channel: io.netty.channel.Channel): Unit = {
      channel.pipeline.addFirst("log", new io.netty.handler.logging.LoggingHandler("debug"))
    }
  }
  val ahcBuilder = builder.configure()
  ahcBuilder.setHttpAdditionalChannelInitializer(logging)
  val ahcConfig = ahcBuilder.build()
  new AhcWSClient(ahcConfig)
}
applicationLifecycle.addStopHook(() => Future.successful(ws.close))

然后将 ws 注入您的控制器。我不是 100% 确定这种方法,如果一些 Play 大师可以验证这一点,我会很高兴。
关于一个 ActorSystem,你只需要它来获得一个线程池来解决那个 Future。您也可以只导入或注入默认执行上下文:
play.api.libs.concurrent.Execution.Implicits.defaultContext.
或者您可以使用自己的:
implicit val wsContext: ExecutionContext = actorSystem.dispatchers.lookup("contexts.your-special-ws-config").