So I am trying to download an image file from an FTP site, get some meta data from it, and then return the binary data to a web page using the Play! Framework. Here is the basic code i am using inside
My project needs to use some third-party jars.I assume I drop these in the lib/ directory in my project, but where do I configure Play to add them to the classpath?
I would like to use Lift-JSON (v2.2) with Play framework to parse a JSON file into Scala case classes. I am using scala 2.8.1 and play 1.1 with scala pluging v0.8. To start I copied the code from http
I\'m trying to create a multithreading server. The problem is that I get the following error: play.exceptions.JPAException: The JPA context is not initialized. JPA Entity Manager automatically start w
I have a Play application that should list out purchases within a give开发者_运维知识库n date interval. If the user does not give any date interval, it should default to showing purchases within the l
like this in servlet use: public void doPost(HttpServletRequest request, HttpServletResponse response)
In the Play framework i have a few models that have fields which are object references to other models. When i use renderJSON, i don\'t want those object references to be included. Currently for my ne
Suppose I have a controller and an action: public Questions extends BaseController { public static void show(id) {
So the question is pretty much in the title. Let\'s say I have some classe: User, Post, Comment and Tag.
I have a model with two many-to-many relationships. Play framework creates the relationship tabel for me, but none of the ids are nullable, resulting with me unable to get my code to work.