Created
November 5, 2014 23:36
-
-
Save thesamet/20e1711b406ffab6495d to your computer and use it in GitHub Desktop.
Reverse-proxy in Play!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def reverseProxy = Action.async(parse.raw) { | |
request: Request[RawBuffer] => | |
// Create the request to the upstream server: | |
val proxyRequest = | |
WS.url("http://localhost:8887" + request.path) | |
.withFollowRedirects(false) | |
.withMethod(request.method) | |
.withVirtualHost("localhost:9000") | |
.withHeaders(flattenMultiMap(request.headers.toMap): _*) | |
.withQueryString(request.queryString.mapValues(_.head).toSeq: _*) | |
.withBody(request.body.asBytes().get) | |
// Stream the response to the client: | |
proxyRequest.stream.map { | |
case (headers: WSResponseHeaders, enum) => Result( | |
ResponseHeader(headers.status, headers.headers.mapValues(_.head)), | |
enum) | |
} | |
} |
How to do that in Java? I get problem with the body part:
import akka.stream.javadsl.Source;
.setBody(Source.single(request.body().asBytes()))
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Something like that? Also see the Play Framework Documentation.