I've build a RESTFul Service with Play 2.4 Scala2.11, now I want to deploy this to IBM Bluemix.
play2-war-plugin was used to package the project to a war package since Bluemix use Liberty as container.
But when I pushed the war package to Bluemix, I got error logs
[ERROR ] SRVE0918E: The attempted blocking write is not allowed because the non-blocking I/O has already been started by the application registering the WriteListener [play.core.server.servlet31.Play2Servlet31RequestHandler$ResultWriteListener@d2487ee8].
I was wondering if there are some better ways to package Play project to a war package.
Can I deploy Scala based PlayFramework project to IBM Bluemix. What are the possible steps I can take to confirm whether this ERROR caused by my codes or caused by the play2-war-plugin? Anyone know how to resolve all the query.
Thanks.