Play Framework 2.0 is a major revision of Play, a Ruby on Rails-like framework for the Java platform. Version 2.0 introduces features such as the use of Scala language, Akka actors, Scala templates and a build system (SBT).

learn more… | top users | synonyms (1)

4
votes
0answers
107 views

Add a build step to a Play 2.0 (scala/sbt) project

I'm writing a Play 2.0 project in Scala, and I need to run a command-line tool before SBT starts deciding what to compile (the command will create/replace a .scala file in the project with one ...
3
votes
0answers
174 views

Play Framework high latency

I created an web application using struts2, hibernate with mysql. I migrated to play framework so now I have two instance of the application one written in play the other with struts2. I can see a ...
3
votes
0answers
177 views

failed downloads on resolving dependency

I'm trying to compile an existing project on play 2.0.4 on my new environment Windows 8. But on resolving dependency, play cannot find javax.ws.rs#jsr311-api;1.1.1!jsr311-api.jar So I looked on the ...
3
votes
0answers
673 views

Play Framework - can not reserve enough space for object heap

I made some modifications to my play project and when I try and run it I get errors. >play run Error occurred during initialization of VM Could not reserve enough space for object heap Error: ...
3
votes
0answers
150 views

Why does PushEnumerator hang here?

In an sbt play project I run console-project and paste in this code: import play.api.libs.iteratee._ val e = Enumerator.imperative[String]() e.push("foo") e.push("bar") e.push("bah") e.close val ...
3
votes
0answers
268 views

Play 2.0 Attempting to obtain a connection from a pool that has already been shutdown

I have AKKA actors running in Play 2 application. There are a list of POJO objects retrieved from database and pass along in a message to actors. When an actor starts processing these objects, it will ...
2
votes
0answers
51 views

Play 2 thread pools : default pool VS Akka Pool with Java

According to the documentation, the easier way to use an actor is : Promise promiseOfInt = Akka.future( new Callable() { public Integer call() { return ... ; } } ); ...
2
votes
0answers
70 views

How do I run test on different environments in Play Framework 2.1.1?

I know there are lots of similar questions around this area I tried them all and it didn't work. Plus, it seems to be ok for just play run command I setup Jenkins which will use the database from ...
2
votes
0answers
88 views

Play Framework 2.1 application mounted as an IntelliJ Module

Known is the command to create IntelliJ files needed for a Play application: play idea with-sources=yes This generates two folders: .idea (containing libraries.xml) .idea_modules Most of ...
2
votes
0answers
313 views

Example of making multiple file uploading in Play Framework 2

Please help me looking for an example of multiple file uploading in Play Framework 2 (Java). I try this code : public static Result saveImages() { File dir = new File(Play.application().path() + ...
2
votes
0answers
285 views

Can't create temporary file on AppFog/CloudFoundry from Play framework application

I deployed my play framework 2.1 application on appfog(same issue also exists on cloudfoundry since they are essentially the same). My application allow file upload, but I have encountered an error ...
2
votes
0answers
97 views

Customized field constructor with constraints

I have written my own field constructor like the following: @(elements: helper.FieldElements) @***************************************************** * Generate input according to Twitter Bootsrap ...
2
votes
0answers
125 views

Play 2.0 multiple Akka futures to modify same database record

I am using Play 2.0.4 Java. There are two apis, one is to remove member detail from a channel object and the other is to add. Both APIs are using Akka.future(). How can I avoid the ebean exception ...
2
votes
0answers
188 views

How to have http wire logging in Play 2

I want to log each HTTP request and response (for debugging/development) within play 2 (2.0 for now, but I'am willing to switch to 2.X once available; Preferred language is Scala). I found I can use ...
2
votes
0answers
142 views

anorm dynamic filters

I'm studying a little the anorm documentation (from play framework) and is not clear if it supports a common query use case: dynamic filters, that is the user fills in 2 or 3 search criteria on a 10 ...
2
votes
0answers
278 views

Ebean - Composite primary key which contains foreign keys

I'm working with the last release of playframework (2.0.4) and the Ebean ORM. Here is my simplified db schema TABLENAME (FIELD_NAME (, ...) ) User (id) Group (id) UserGroup (user_id, group_id, ...
2
votes
0answers
159 views

Play Framework 2.0 Access foreign key object from template

I have 2 Ebean models connected with ManyToOne connection. @Entity public class Interview extends Model { @Id Long id; @ManyToOne(cascade = CascadeType.MERGE) public User user; .... } ...
2
votes
0answers
122 views

how to pass a value through ajax function in play 2.0

how to pass a value through ajax function in play 2.0 not enough arguments for method editExam: (examid: Long)play.api.mvc.Call. Unspecified value parameter examid. ...
2
votes
0answers
361 views

Play 2.0.4 / Ebean 2.7.3 - DB primary key sequencing

I have got a problem with Play Framework 2.0.4. I have models managed through the Ebean ORM. These models have numerical primary key IDs (int) with sequence auto generator. Underlying database is ...
2
votes
0answers
397 views

Forward a file upload stream to S3 through Iteratee with Play2 / Scala

I've read some stuff about the possibility to send a file to S3 through Iteratee, which seems to permit to send so S3 chunks of a file as we receive them and avoid an OutOfMemory for large files for ...
2
votes
0answers
200 views

How does one do instance level model validation in Play 2?

I need some complex validation logic which would be across multiple fields. Is there a way to do this every time save() or update() on a model is called? I m currently using Ebean as my ORM. The only ...
2
votes
0answers
112 views

Play 2.0(.2) IntelliJ Mac OS x play-specific marked as error (red)

I'm using the current IntelliJ-Version 11.1.x (and(!) tried it with the current EAP 12.0-Version! started both wie 32 and 64 bit), running under Mac OSx (version 10.6.8) and using Java Version ...
2
votes
0answers
701 views

Play! Framework 2.0 connecting to multiple databases

I'm trying to connect to multiple databases in Play 2.0. Here's how my application.conf looks like: db.default.driver= com.mysql.jdbc.Driver ...
1
vote
0answers
22 views

Deadbolt 2 in Scala ask if user has access to route

Making a menu in a scala template with some authorized links in them will look like this: <ul> <li><a href="@routes.Application.index()">Home</a></li> ...
1
vote
0answers
39 views

Play Cache unable to deserialize case class

Seems the Play Cache (i.e. ehcache) is having trouble deserializing my case class. I'm seeing java.io.InvalidClassException (no valid constructor) Is there a straightforward way around this? I ...
1
vote
0answers
34 views

Getting a Play/SBT app to depend on a Maven POM

My Play 2 application is a subproject of a larger Maven application. The Play 2 app has dependencies in its parent - it gets its data access from it. Therefore, I want the Build of the application to ...
1
vote
0answers
99 views

Play Framework 2.1 websockets streaming data not working

I have a websocket connection setup in my Play application. The function is below, and I'm trying to stream some data in this function. When the websocket connection is set up and ready to go, I ...
1
vote
0answers
117 views

Set session cookies in play framework testing using selenium hd

I am trying to do some unit testing using selenium hd. I currently have the following code: browser.goTo("http://localhost:3333/") browser.$("#email").text("michele@sample.com") ...
1
vote
0answers
116 views

Lucene/MySQL Integration - Play Framework (Scala)

Has anyone tried to integrate Lucene and MySQL with Play Framework through Scala? The challenge i am finding is how to keep the lucene index in synch with the DB. This is possible using Hibernate ...
1
vote
0answers
62 views

playframework 2.0 VirtualFile fromRelativePath is missing

In play 1.x was possible to use code that can get a file from relative application's path. Like this: static File xmlDataFile= VirtualFile.fromRelativePath( ...
1
vote
0answers
118 views

Play 2.0 / SBT: Exclude certain transitive dependencies from some/all modules in Build.scala

I have a large legacy Java application with a Grails front end, and I'm working on replacing the Grails front end with a new one written in Play. Some of the (Maven) module dependencies in the legacy ...
1
vote
0answers
163 views

Play framework 2.0, delete in oneToOne cascade cause persistence exception

I am using Play 2.0 framework, I have three classes, Patient, Visit and Puberty. Patient and Visit have ManyToOne relationship, whereas Visit and Puberty have a one to one relationship (I know, it's ...
1
vote
0answers
306 views

How to pass optional parameter to scala template in play framework 2

Is it possible for the java controller in playframework 2 to pass optional parameter to the scala page? I have a scala page which I'm rendering from different actions. only in a certain case one of ...
1
vote
0answers
69 views

Duplicate property mapping of bitmap$init$0 found when using @MappedSuperclass in a Scala Play 2.0.4 app with Hibernate 3.6.10 JPA

Has anyone seen this exception before and knows how to resolve the issue? We are having a Scala Play 2.0.4 project and Hibernate 3.6.10 as the JPA backend. The entity in question is extending a ...
1
vote
0answers
81 views

A secure way to sign a request with RSA key and Play Framework 2.0

I'm using the Play Framework 2.0, and I need to secure some requests, based on a private RSA key. I would like to get some advice to secure the whole thing and prevent illegal access. Basically, for ...
1
vote
0answers
133 views

JSON parsing with Play: why is a list being parsed this way?

Here is a JSON list I want to process: scala> jsonStructure \ "response" \ "docs" res4: play.api.libs.json.JsValue = [{"title":"the very first document"},{"title":"on brick walls"}] I tried ...
1
vote
0answers
102 views

Play2 run via Sbt in dev mode on Osx Causes Out of Memory

I can't seem to find similar issues. On OSX, play2 bin seems to run okay but using sbt causes oom errors and scala files never complete compiling --- (Running the application from SBT, ...
1
vote
0answers
62 views

Ebean change Postgres schema at runtime

I discovered ebean with the play framework 2 a few time ago. I really like the way to use the query to access the database. But now I have some problems. I want to write a multi tenancy saas ...
1
vote
0answers
77 views

Deploying a Play 2.1 App with Tomcat

I have a play app I've converted to a .war file with pay2war and now need to deploy that to tomcat. Which files to I move over to my webapps directory within tomcat and do I need to unpack the war ...
1
vote
0answers
103 views

Is there a more appropriate way to set the language_in option for the closure compiler ( Play 2.1 )?

I had to configure the language_in option in the closure compiler to ECMASCRIPT5 to compile the libs Ember, Angular and others it's require ES5... There must be a better way, but I implemented this ...
1
vote
0answers
195 views

How solve error reading annotations in play framework 2

this is my proyect link https://github.com/jstar88/LibreTitan i got this exceptions compiling in localhost: play framework 2.1 Unexpected exception RuntimeException: Error reading annotations ...
1
vote
0answers
134 views

playframework and mysql - how to pass connection properties?

from application.conf: db.default.url=jdbc:mysql://localhost/mydb?characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&more Conn Properties I'm coming from java/spring/wicket to ...
1
vote
0answers
64 views

The type controllers.ReverseProducts cannot be resolved

When I am compiling my play application it is giving me the error: [error] E:\play\apps\warehouse\app\controllers\Products.java:56: `}' expected but eof found. In Eclipse it gives an error: ...
1
vote
0answers
114 views

Play Modular Development: sub projects chicken and the egg

In Play 2.x sub projects are the way to build modular applications, looks great. Now, getting into the nitty gritty some issues become clear: 1) Cyclical dependencies not possible (A can depend on ...
1
vote
0answers
158 views

Action composition in Play framework with Java

I'm developing a security implementation for Play with composition of actions. For security reasons sent an access token in the JSON request payload, not in the header of the request. What I do is, ...
1
vote
0answers
61 views

How to make Enumerator not from file?

I'm developing web application with scala + play 2.0.4. When the program runs, it fetches huge amount of data from mongoDB and tries to make csv file and send it to client browser so that the csv file ...
1
vote
0answers
102 views

Default _showConstraints value for the form inputText in views

I don't want to have to define arg '_showConstraints -> false for each of my inputText of my views. @inputText(taskForm("name"), '_showConstraints -> false ) How could I do to defaulting this ...
1
vote
0answers
85 views

Catch a configuration error in Play! Framework 2.0.4

My Play! 2.0.4 web application currently connects to several RDS MySQL databases, with the configuration file as such: # Africa db.afr.url="jdbc:mysql://<africa-server>:3306/users" ...
1
vote
0answers
87 views

Play! Framework and Comet with jsonp

I am attempting to create a comet channel in my play 2.0 app. When testing locally everything works well, unfortunately when deploying the code and using it i get the following message: ...
1
vote
0answers
120 views

Play 2 - inMemoryDatabase() precision for FakeApplication

In order to launch a test based on a fake application using memory database, Play Framework 2 promotes doing this way: FakeApplication(additionalConfiguration = inMemoryDatabase()) Is it a ...

1 2 3 4 5 13