scala – 带有Http4s的Circe编码器和解码器

我正在尝试使用http4s,circe和http4s-circe.

下面我试图使用circe的自动派生功能.

import org.http4s.client.blaze.SimpleHttp1Client
import org.http4s.Status.ResponseClass.Successful
import io.circe.Syntax._
import org.http4s._
import org.http4s.headers._
import org.http4s.circe._
import scalaz.concurrent.Task
import io.circe._

final case class Login(username: String,password: String)
final case class Token(token: String)

object JsonHelpers {
   import io.circe.generic.auto._
   implicit val loginEntityEncoder : EntityEncoder[Login] = jsonEncoderOf[Login]
   implicit val loginEntityDecoder : EntityDecoder[Login] = jsonOf[Login]
   implicit val tokenEntityEncoder: EntityEncoder[Token] = jsonEncoderOf[Token]
   implicit val tokenEntityDecoder : EntityDecoder[Token] = jsonOf[Token]
}

object Http4sTest2 extends App {
   import JsonHelpers._
   val url = "http://"
   val uri = Uri.fromString(url).valueOr(throw _)
   val list = List[Header](`Content-Type`(MediaType.`application/json`),`Accept`(MediaType.`application/json`))
   val request = Request(uri = uri,method = Method.POST)
      .withBody(Login("foo","bar").asJson)
      .map{r => r.replaceAllHeaders(list :_*)}.run
   val client = SimpleHttp1Client()
   val result = client.fetch[Option[Token]](request){
      case Successful(response) => response.as[Token].map(Some(_))
      case _ => Task(Option.empty[Token])
   }.run
   println(result)
}

我得到了这两个编译器错误的多个实例

Error:scalac: missing or invalid dependency detected while loading class file 'GenericInstances.class'.
Could not access type Secondary in object io.circe.Encoder,because it (or its dependencies) are missing. Check your build deFinition for
missing or conflicting dependencies. (Re-run with `-Ylog-classpath` to see the problematic classpath.)
A full rebuild may help if 'GenericInstances.class' was compiled against an incompatible version of io.circe.Encoder.


Error:(25,74) Could not find implicit value for parameter encoder: io.circe.Encoder[Login]
   implicit val loginEntityEncoder : EntityEncoder[Login] = jsonEncoderOf[Login]

解决方法

我能够解决这个问题.我在google上搜索了sbt circe依赖项,我复制粘贴了第一个搜索结果.这是0.1左右,这就是为什么事情对我不起作用.

我将依赖项更改为

libraryDependencies ++= Seq(
  "org.http4s" %% "http4s-core" % http4sversion,"org.http4s" %% "http4s-dsl" % http4sversion,"org.http4s" %% "http4s-blaze-client" % http4sversion,"org.http4s" %% "http4s-circe" % http4sversion,"io.circe" %% "circe-core" % "0.7.0","io.circe" %% "circe-generic" % "0.7.0"
)

现在自动派生工作正常,我能够编译下面的代码

import org.http4s.client.blaze.SimpleHttp1Client
import org.http4s._
import org.http4s.headers._
import org.http4s.circe._

import scalaz.concurrent.Task
import io.circe.Syntax._
import io.circe.generic.auto._
import org.http4s.Status.ResponseClass.Successful

case class Login(username: String,password: String)
case class Token(token: String)

object JsonHelpers {
   implicit val loginEntityEncoder : EntityEncoder[Login] = jsonEncoderOf[Login]
   implicit val loginEntityDecoder : EntityDecoder[Login] = jsonOf[Login]
   implicit val tokenEntityEncoder: EntityEncoder[Token] = jsonEncoderOf[Token]
   implicit val tokenEntityDecoder : EntityDecoder[Token] = jsonOf[Token]
}

object Http4sTest2 extends App {
   import JsonHelpers._
   val url = "http://"
   val uri = Uri.fromString(url).valueOr(throw _)
   val list = List[Header](`Content-Type`(MediaType.`application/json`),"bar").asJson)
      .map{r => r.replaceAllHeaders(list :_*)}.run
   val client = SimpleHttp1Client()
   val result = client.fetch[Option[Token]](request){
      case Successful(response) => response.as[Token].map(Some(_))
      case _ => Task(Option.empty[Token])
   }.run
   println(result)
}

相关文章

共收录Twitter的14款开源软件,第1页Twitter的Emoji表情 Tw...
Java和Scala中关于==的区别Java:==比较两个变量本身的值,即...
本篇内容主要讲解“Scala怎么使用”,感兴趣的朋友不妨来看看...
这篇文章主要介绍“Scala是一种什么语言”,在日常操作中,相...
这篇文章主要介绍“Scala Trait怎么使用”,在日常操作中,相...
这篇文章主要介绍“Scala类型检查与模式匹配怎么使用”,在日...