0
votes
1answer
225 views

how to work with promise in play 2.0 framework

i am working play 2.0 application with java.In that i am using promise for the Asynchronous sending of email.For that i followed http://www.playframework.org/documentation/2.0/JavaAsync I tried like ...
1
vote
2answers
449 views

How to use Play-mini within Akka microkernel?

I've read the blog post at letitcrash.com about Play-mini and Akka (this one) and just can't get my head around on how to use Play-mini inside Akka microkernel. Since there is no use of Global object, ...
9
votes
1answer
587 views

Akka for REST polling

I'm trying to interface a large Scala + Akka + PlayMini application with an external REST API. The idea is to periodically poll (basically every 1 to 10 minutes) a root URL and then crawl through ...
0
votes
2answers
65 views

Configuring Object Instances from JSON in conf Files

So I want to be able to basically make instances of a class from JSON definitions in a conf file. In looking through the docs, I found that there are ways to reference things that are defined in JSON ...
3
votes
1answer
629 views

Is Logback Really Inside Play?

Working on an app using Akka 2 deployed with Play-mini. I pulled logback into the project and it works, but its config gets stomped so it was necessary to do a Joran configuration method and have that ...
1
vote
1answer
204 views

How to Support Parameters with Play Mini's REST?

I'm using Akka and Play Mini (which is just a REST layer on top of Netty). I'm using it from Java. The syntax is simple, covered in their readme on GitHub: @URL("/coco/*/name/*") This is ...
2
votes
1answer
153 views

Returning a String from a REST Call Using Akka/Play-mini

Akka seems like a dream come true. Sadly, like so much other software, the documentation and examples are lacking in some major ways. Since the whole point of the thing is to provide non-blocking, ...
4
votes
2answers
2k views

Blending Akka 2, the Play2-mini framework and HTTP

With the release of Akka 2, the Akka HTTP modules have been replaced with the option of using Play2-mini, where Play2-mini looks like Play2 minus model view controller. The line greys out between ...