http4s клиент создает Uri из строки
Я написал следующий код, используя клиентскую библиотеку http4s
import org.http4s.UrlForm
import org.http4s.Uri
import org.http4s.client.blaze.SimpleHttp1Client
import org.http4s.dsl._
import org.http4s.client._
val requestUrl = s"$url/foo/bar"
val client = SimpleHttp1Client()
val uri = Uri.fromString(requestUrl).valueOr(throw _)
val req = POST(uri, UrlForm("name" -> "foo"))
val result = client.expect[String](req).run
println(result)
Но это исключение
[error] Exception in thread "main" java.lang.NoSuchMethodError: scalaz.syntax.std.package$option$.ToOptionIdOps(Ljava/lang/Object;)Lscalaz/syntax/std/OptionIdOps;
[error] at org.http4s.parser.Rfc3986Parser$class.HierPart(Rfc3986Parser.scala:33)
[error] at org.http4s.parser.RequestUriParser.HierPart(RequestUriParser.scala:9)
[error] at org.http4s.parser.Rfc3986Parser$class.AbsoluteUri(Rfc3986Parser.scala:21)
[error] at org.http4s.parser.RequestUriParser.AbsoluteUri(RequestUriParser.scala:9)
[error] at org.http4s.parser.Rfc3986Parser$class.Uri(Rfc3986Parser.scala:18)
Мои sbt-зависимости
libraryDependencies ++= Seq(
"org.http4s" % "http4s-core_2.11" % "0.15.3"
"org.http4s" % "http4s-blaze-client_2.11" % "0.15.3"
"org.http4s" %% "http4s-argonaut" % "0.15.3"
"org.http4s" % "http4s-dsl_2.11" % "0.15.3"
"org.http4s" %% "http4s-client" % "0.15.3"
)
1 ответ
Решение
Я немного их почистил:
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-core" % "0.15.3",
"org.http4s" %% "http4s-blaze-client" % "0.15.3",
"org.http4s" %% "http4s-argonaut" % "0.15.3",
"org.http4s" %% "http4s-dsl" % "0.15.3",
"org.http4s" %% "http4s-client" % "0.15.3"
)
scalaVersion := "2.11.8"
Я не могу воспроизвести это с этим. Я бы установил https://github.com/jrudolph/sbt-dependency-graph и посмотрел, есть ли у вас библиотеки, зависящие от скалаза 7.1/7.2 - вот матрица
Для обработки URI есть небольшой документ.