Top "Spray" questions

spray is an open-source toolkit for building REST/HTTP-based integration layers on top of Scala and Akka.

Why is the error Conflicting cross-version suffixes?

I'm getting this error when I try to compile a Scala project in sbt. Modules were resolved with conflicting cross-version …

scala sbt akka spray
Spray, Akka-http and Play, Which is the best bet for a new HTTP/REST project

I'm going to develop new HTTP/REST services using Scala and Akka Actors. I have experience working with Play, but …

scala playframework akka spray akka-http
Unsupported version error using JTDS with Scala

I'm trying to use the Java JTDS driver to connect to my database in Scala . However, whenever I try to …

java scala jtds spray
SSLHandshakeException: No cipher suites in common - spray-can SSL configuration

I'm trying to install my SSL certificate I acquired for my domain from Comodo but am getting a SSLHandshakeException: No …

java https ssl-certificate spray sslhandshakeexception
no configuration setting found for key akka

I am using scala, spray and akka for one of my projects. In Intellij, it is working fine. When I …

scala akka spray
how to serialize case classes with traits with jsonspray

I understand that if I have: case class Person(name: String) I can use object PersonJsonImplicits extends DefaultJsonProtocol { implicit val …

scala spray spray-json
How do i specify spray Content-Type response header?

I understand that spray does that for me, but I still want to override it with my header, how can …

scala akka spray
How can I parse out get request parameters in spray-routing?

This is what the section of code looks like get{ respondWithMediaType(MediaTypes.`application/json`){ entity(as[HttpRequest]){ obj => complete{ …

scala httprequest akka spray
Query parameters for GET requests using Akka HTTP (formally known as Spray)

One of the features of Akka HTTP (formally known as Spray) is its ability to automagically marshal and unmarshal data …

akka spray akka-http
could not find implicit value for parameter marshaller: spray.httpx.marshalling.ToResponseMarshaller

I'm using val akkaV = "2.2.3" val sprayV = "1.2.0" Seq( "io.spray" % "spray-can" % sprayV, "io.spray" % "spray-routing" % sprayV, "io.spray" %% "spray-json" % "1.2.5", "io.spray" % "…

scala spray spray-json