spray-dsl Questions
2
Solved
I tried a simple spray example app and i cannot access the route, I uploaded the example source code which does not work to github: spray-tomcat-example:
git clone https://github.com/avidanyum/sp...
2
Solved
When I'm using Spray.io to develop a RESTful API, how should I structure my application?
I already saw this answer on how to split a Spray application, but I'm not satisfied with it, since it does...
1
Solved
I have this route:
val routes =
pathPrefix("api") {
path("ElevationService" / DoubleNumber / DoubleNumber) { (long, lat) =>
post {
requestContext =>
println(long, lat)
}
}
}
This w...
Athamas asked 30/12, 2014 at 15:1
1
Solved
I would like to support a couple of different content types submitted to the same URL:
e.g:
application/x-www-form-urlencoded, multipart/form-data, application/json
I would like to do something...
1
© 2022 - 2024 — McMap. All rights reserved.