Play is based on a lightweight, stateless, web-friendly architecture and features predictable and minimal resource consumption (CPU, memory, threads) for highly-scalable applications.

learn more… | top users | synonyms

0
votes
1answer
7 views

Place Play Framework 2.1 database evolutions in sub project?

I have a Play Framework 2.1 application, and the database code is located in a sub project — in case I want to support more than one kind of backend in the future, e.g. a file based database or ...
1
vote
3answers
85 views

Scala object to Json Formatter using combinators

I have implemented a class following Scala documentation case class Creature( name: String, isDead: Boolean, weight: Float, dob: java.sql.Date ) import play.api.libs.json._ import ...
2
votes
1answer
336 views

Play Framework 2.1 Java: Auto-Reload not working

The problem/s: --Views are being compiled but hitting refresh in a browser won't show the changes without restarting the server manually. -- Changes to controllers compile automatically using ~run but ...
0
votes
1answer
41 views

Streaming an http response within a composed action in Play! Framework 2.1

I'm creating an authentication action that wraps other actions, using the Play Zentasks sample app as a template. One of the things that this needs to be able to do, is hit a webservice in certain ...
0
votes
0answers
13 views

“impossible to get artifacts when data has not been loaded.”

In a Java play 2.1.1 app I get the following error: [myproject] $ update [info] Updating {file:/C:/path/myproject/}myproject... [info] Resolving ... [error] impossible to get artifacts when data has ...
0
votes
0answers
37 views

Serialize single variable of an object into a single value using json Writes in Play 2.1

I am using Play 2.1.1 with Scala. I want to be able to serialize an object into a single value so that I can toss them into a list and have it output an array of this object. I only want it to output ...
0
votes
1answer
19 views

How configure aspectj compilation in playframework 2.1.1

I have added to plugins.sbt this declaration addSbtPlugin("com.typesafe.sbt" % "sbt-aspectj" % "0.9.0") Now I would like to configure this plugin to compile my java controller classes using aspect ...
0
votes
0answers
11 views

Getting Warning message while starting paly application

After creating paly application and while starting play application i am getting following warning [warn] Host repo.typesafe.com not found. ...
7
votes
2answers
2k views

play framework 2.1 - scheduling async tasks

In play's 2.0.x doc you can see how to schedule asynchronous tasks: http://www.playframework.org/documentation/2.0.4/ScalaAkka Akka.system.scheduler.schedule(0 seconds, 30 minutes, testActor, ...
2
votes
1answer
16 views

Do 'configuration environments' exist in Play 2.x?

In Play 1.x, you could define a different configuration for production and development enviornment: # These are applied in the default 'dev' enviornment. db=mem mail.smtp=mock # The following are ...
0
votes
1answer
31 views

Where did the .target directory come from in my Play 2.1.1 project?

I'm just getting started with the Scala/Play 2.1.1/Scala-IDE stack and am kind-of confused as to why my Play 2.1 project directory contains both a target directory and a .target directory. The stock ...
0
votes
0answers
20 views

Play 2.1.1 Bind a List<Class> from form

I saw some similar questions, but I couldn't really understand any answers. I have a problem with getting a list of from a form. I've been doing it like this: @Entity public class Foo extends Model ...
0
votes
1answer
31 views

How to change future timeout with play framework 2.1.0

i'm calling a webservice using play framework 2.1 which takes longer than 10s. because of that i always receive the following error: play.api.Application$$anon$1: Execution ...
0
votes
1answer
29 views

Is it possible to cast a SqlQuery results from Ebean to a Model (Bean)?

Using Ebean (via Play Framework 2.1.1), I have to build a home made SQL query, but I'd like it to return directly a List<MyModel>, instead of a List<SqlRow> that I would have to query the ...
1
vote
0answers
29 views

How to log insert, update, delete sqls with ebean ORM in play 2.1

Does anyone know to log insert, update, delete sqls with ebean ORM in play 2.1. I don't want to log any select sqls. I know turn on it in application.conf db.default.logStatements=true ...
0
votes
1answer
72 views

actual argument play.data.Form cannot be converted to play.api.data.Form

play doesn't convert my java form object to the scala world. [error] /home/myproject/split/frontend/app/controllers/frontend/Configuration.java:46: error: method render in class settings cannot ...
0
votes
1answer
29 views

How to overcome “there were 1 feature warning(s); re-run with -features for details”

I am new to Scala, Scala-IDE, and Play 2.1 and am working my way through the tutorials. Today I noted that the Eclipse Project emitted by the "todolist" tutorial shows up in the Scala-IDE with a ...
2
votes
2answers
208 views

Why the 20x ratio Thread sweet spot for IO? [formerly : Which ExecutionContext to use in playframework?]

I do know how to create my own ExecutionContext or to import the play framework global one. But I must admit I am far from being an expert on how multiple context/executionServices would work in the ...
0
votes
1answer
20 views

Play 2.1.0 subproject logs issue

I have included an akka 2.1 subproject to my play project. The logs however have stopped showing up in application.log now. I'm using the basic mechanism to log akka private LoggingAdapter log = ...
2
votes
2answers
73 views

Where am I iterating over my ResultSet one time too many? or why is it closed?

I am using anorm to access data on my DB. The DB is written to using another service, which is made in Java, and persist using ebean. I have the following scala object import java.sql.Connection ...
0
votes
0answers
31 views

Custom multipartFormData parser in play2 scala to handle multiple encodings on dataparts

I'm trying to implement a custom multipartFormData data parser to handle a callback from Sendgrid API. The callback is a multipart request where the dataparts could be encoded in different encodings: ...
1
vote
2answers
138 views

Assets is already defined as object Assets

I am doing more extended tests for Play Subproject feature as described here: http://www.playframework.com/documentation/2.0/SBTSubProjects. But I am getting the error: Assets is already defined as ...
1
vote
1answer
26 views

Query string lost from a submit button

I am new to both web application and the play framework, and the problem I am asking might be very naive. However, I googled around for a little while and couldn't find a good answer to it, so please ...
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
1answer
34 views

Secure Social Play 2.x / Keeping transient, unregistered (i.e. hasn't logged in yet) user in session?

I'm using Play Framework (Scala) and SecureSocial to authenticate users. I'd like my site to allow non-logged-in users to browse and populate certain user data (e.g. email address) during their ...
0
votes
1answer
65 views

Play 2.1. WebSocket No EntityManager bound to this thread

I'm trying to implement WebSocket in Play 2.1. framework together with JPA using Hibernate and I'm getting following exception when I'm accessing the DB from WebSocket: java.lang.RuntimeException: No ...
1
vote
1answer
35 views

Play! 2.1 / Why isn't my Jerkson dependency resolved?

Attempting to use the forked Jerkson library from https://github.com/randhindi/jerkson. Cloned a source dependency into the folder module and defined the following: object ApplicationBuild extends ...
0
votes
1answer
38 views

Support for HTTP “MERGE” verb in Play! Framework 2.1?

I'm attempting to implement an oData service on the Play! Framework. When updating records, The oData client "JayData" uses the 'Merge' HTTP Verb/method to submit changes, however this doesn't appear ...
0
votes
2answers
149 views

Play2.1 JSON Format with Empty String Validation

I am attempting to validate JSON when unmarshalling to an object in Play2.1. The Format object I have defined only validates when a field is absent in the JSON, but I want to validate that fields are ...
2
votes
2answers
68 views

Converting ISO-8859-1 to UTF-8 for MultipartFormData in Play2 + Scala when parsing email from Sendgrid

I have hooked up my Play2+Scala application to Sendgrid Parse Api and I'm really struggling in decoding and encoding the content of the email. Since the emails could be in different encodings ...
0
votes
1answer
58 views

What is the correct way to configure actors in Play 2.x?

I noticed a slight difference between the documentation for 2.1 and 2.0: 2.0 akka.default-dispatcher.core-pool-size-max = 64 akka.debug.receive = on 2.1 ...
0
votes
1answer
49 views

Play Framework 2.1 and Ebean: model Finder returns no data

I've been banging my head around this for hours. I have two models: @Entity @Table(name = "app_user") public class AppUser extends Model { @Id Long id; … @Constraints.Required ...
0
votes
1answer
35 views

How to specify alternate Play! config?

I'm currently starting my application as follows: play run -Dconfig.resource=prod.conf But Play seems to ignore this and uses the default application.conf. How can I specify a different config?
0
votes
1answer
51 views

Need example of use of PreparedStatement with Anorm scala

I am using Anorm for querying a MySQL database from Playframework 2.1. I created a prepared statement like this. import play.api.db.DB import anorm._ val stat = DB.withConnection(implicit c => ...
0
votes
1answer
29 views

How to remove ETAG header on play framework 2.1.1? (i'll use akamai)

I'll set akamai in front of my server, so i need to remove ETAG header from my responses. Please, anyone could tell me the easy way to do it? Thanks.
4
votes
1answer
84 views

Bind complex (JSON) form data automatically

My JSON data coming in request().body().asFormUrlEncoded().get("records") [{"string":"foo","termId":"793340"},{"string":"bar","termId":"460288"}] My form definition: public static class MyForm { ...
0
votes
1answer
36 views

BCrypt.checkpw() Invalid salt version exception

I'm trying to implement authentication using BCrypt, in my Play 2.1. Java application, but I'm getting Invalid salt version exception when I'm trying to authenticate the user. This is my stack trace ...
0
votes
1answer
51 views

Play framework 2, how to use execution context in Java?

The official documents only describe how to use it in scala. http://www.playframework.com/documentation/2.1.0/ThreadPools. Future { // Some blocking or expensive code here ...
0
votes
1answer
82 views

How do we call “Caching in Template” for Play 2.1?

We are trying to follow the "Caching in templates" example listed in http://www.playframework.com/documentation/2.1.1/JavaCache and the compiler throws us an "not enough arguments for method ...
0
votes
1answer
43 views

Unidirectional OneToMany relation with JoinTable - table not generated

I tried to create an unidirectional OneToMany relation with a JoinTable in Play Framework 2.1. However, the framework is not generating the 'JoinTable': "transformation_input_files". The strange part ...
0
votes
1answer
42 views

Play 2.1 / taking in account a javaagent while running tests

My goal is to launch my integration tests contained within my Play app. To do so, I used to launch them through Intellij. Those tests needs Spring aspectJ weaving, thus I precised in my Intellij test ...
0
votes
1answer
33 views

Many-To-One relationship in Yaml

in my yaml definition, an object doesn't get connected. It is null. I don't see the problem: Person: @Entity @Table(name="person") public class Person extends Model { @Id ...
1
vote
0answers
44 views

When is persistence.xml necessary for Play 2.1.1 Java? Entities don't persist in a many-to-one relationship

In my program, I have a Task model with a allDates field, which is a collection of all the Dates that task occurs on. My goal is to make a calendar manager that allows users to input tasks that repeat ...
1
vote
1answer
50 views

Local dependencies resolved by SBT but not by Play! Framework

I'm trying to use banana-RDF, a locally published library (published using SBT's publish-local) from a Play! Framework project, but when running compile from Play's console, the wanted library is not ...
0
votes
1answer
32 views

Different results between ebean and manually entered SQL query?

I've built a MySQL Query that returns 452 entries when I try it via PhpMyAdmin, here's the query : SELECT csp.id FROM child_subscription_prices csp JOIN child_moments cm ON csp.child_moment_id = ...
0
votes
0answers
48 views

@input: context-dependent parameters

I am trying to add parameters to an @input tag depending on my displayed object. An example would be clearer. Let's imagine my users can authenticate from an LDAP (let's say it is SSO) or from my ...
1
vote
0answers
47 views

ScalaMock 3. Mocking methods with function parameter

I would like to mock methods with a function parameter and a function parameter in combination with curried paramters like: trait Secured { def IsAuthenticated(f: AuthenticatedData => ...
0
votes
1answer
125 views

play framework forms without helpers -not getting the errors

Im trying to generate my views without more than basic scala due to the fact that i dont know it very well. for this reason im writing just html to make the forms the only problem i have is to get ...
1
vote
0answers
66 views

Missing sbt/boot/ directory in new play-2.1.1 installation. Playframework installation on Linux Mint 14

I'm trying to install the Play! Framework on a Linux Mint box, but I'm having a hard time getting play going. After the installation, I'm getting folliwing error message when I type play help at the ...
0
votes
1answer
74 views

Play 2.1 Json array to List[String]

I want to parse a json string similar to: "tags": [ { "id": 1, "tag": "Foo" }, { "id": 2, "tag": "Bar" ...

1 2 3 4 5 8