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
34 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 ...
0
votes
1answer
45 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
86 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
55 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 ...
1
vote
3answers
97 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 ...
1
vote
1answer
70 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
35 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 = ...
1
vote
1answer
97 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
38 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 ...
0
votes
1answer
69 views

Why “play run” doesn't read my configuration file?

I'm using "play run" when I implement something on Play Framework because it supports auto-compile feature. But it seems that "play run" doesn't read configuration file that I specify. I'm running ...
0
votes
1answer
70 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
89 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" ...
0
votes
0answers
70 views

Scala: Play Framework 2 ignores httpOnly flag in application.conf

I want to use i18n in my Play-Application (Play 2.1, Scala). The chosen language is stored in the PLAY_LANG-Cookie, but unfortunately this cookie is httpOnly. That means I can't read its value in my ...
0
votes
2answers
37 views

How can I figure out which Template (class) is being used based on the URL?

For example, if my URL is "/" how can I tell in the Application controller which template I am using to render (for example "app/views/index.scala.html")? UPDATE to my Question: I have an AJAX call ...
0
votes
2answers
108 views

Getting value map is not a member of Object when doing getOrElse with Future in my Play2 app

I'm trying to do a for comprehension when calling my mongo instance with ReactiveMongo. The method should check if any result is returned, if not return Future(NotFound). But I'm getting an error that ...
1
vote
1answer
99 views

Play Framework cannot resolve SBT dependency

I am pretty new to Play framework and have an application from which I need to access Alfresco. This is my Build.scala file object ApplicationBuild extends Build { val appName = ...
0
votes
0answers
51 views

Google App Engine support for “Join” queries in JPA2

I'm using JPA2 and also "Join" and "GroupBy" queries in my Java Play Framework 2.1 Application . Can I still use Google App Engine for my application? As per GAE documentation few features of JPA2 ...
0
votes
0answers
21 views

Adding local java projects as dependencies in Play 2.1's build

basically my system comprises of 4 projects ProjectA, ProjectB, ProjectC and ProjectD. there are some shared objects between these in a separate project ProjectDeps, folder structure like follows ...
1
vote
0answers
51 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 => ...
1
vote
0answers
32 views

Playframework evolutions [duplicate]

In Playframework there are evolutions. Problem is that by default it always rewrites 1.sql file under evolutions/default/ so that after execution all tables are dropped and data is lost. Is there a ...
1
vote
1answer
48 views

twitter-cassie : Error thrown on Cluster init

I am using playframework 2.1.0 and scala 2.10. I have added cassie 0.20.0 from the twitter repo. This line of code val cluster = new Cluster("localhost", 9160) Seems to provoke the following ...
0
votes
1answer
104 views

Handling freeform GET URL parameters in Play 2 routing

Let's say I have an action that optionally accepts two parameters: def foo(name: String, age: Integer) = Action { // name & age can both be null if not passed } How do I setup my route file ...
0
votes
1answer
52 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
39 views

Play framework 2 java with spatial/geometry data type?

How to use spatial type in play framework 2 java models? Seems Ebean does not support this type yet.
0
votes
0answers
73 views

How can I get the CSRF Token in functional tests

How can I get the CSRF Token in functional tests? It doesn't work to save a token in the session and submit it in the URL. "The `send` action" should { "return status code 400 if subject is ...
2
votes
2answers
83 views

I need advice on Play's Json and elegant Option handling in the Writes trait

I have a "style" or "effective scala" type of question here: I have a "FeatureCheck" class which I need to serialize into a Json in Play framework. case class FeatureCheck(val result: ...
0
votes
1answer
64 views

Suitable method for scheduler not found with play 2.1.1

I'm trying to use Akka and the scheduler with Play! Framework 2.1.1 in java. I already used it in Scala, with Play 2.1.0, but the imports are not all working. My current imports: import ...
0
votes
2answers
95 views

Rendering inline HTML from Play Framework using Scala?

How do I render inline HTML from Play 2, without using an external template file? def checkStatus = Action { val status = ... if (status.ok) { Ok("Status OK") } else { // Oops, this ...
1
vote
2answers
157 views

How do I map my objects correctly to make a list of objects work in mongo + play2

I'm trying to write readers/writers for my case classes after reading: https://github.com/sgodbillon/reactivemongo-demo-app/blob/master/app/models/articles.scala ...
1
vote
1answer
51 views

Change output directory of sbt

I want to change my output directory for some generated files, in this case generated objects from an XSD-Schema. Here is part of my Build file. val main = PlayProject(appName, appVersion, ...
1
vote
0answers
33 views

Is there a throttle module or a way to do so in Play!Framework 2?

I'm building an API and I'd like to limit the requests made to it. I'd like to limit it by the number of requests per user per time (hours, days), the whole number of requests (for all users) per ...
0
votes
1answer
29 views

Render a Play!Framework2 javascript as template?

I'd like to return a .js file from a template in Play!Framework 2. Here's how I did that : In my views folder, I created a template file : initials.scala.js Containinig something like : { ...
0
votes
1answer
120 views

Playframework Any to Json - usecase: anorm query result to Json

I'm using playframework 2.1.0 with Anorm to query a db. I want to serialize the result to json without going through any interim objects/case classes. this is what the flow looks like: Using anorm: ...
0
votes
1answer
86 views

NoSuchMethodError: skipInputBytes

I am getting this strange Exception on JPEG upload. PNG works fine. play.api.Application$$anon$1: Execution exception[[RuntimeException: java.lang.NoSuchMethodError: skipInputBytes]] at ...
2
votes
0answers
76 views

AbsoluteURI support in Play Framework 2.1

As stated here: http://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html To allow for transition to absoluteURIs in all requests in future versions of HTTP, all HTTP/1.1 servers MUST accept the ...
2
votes
2answers
222 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
55 views

Where does a staged Play 2.1 application look to find configuration files?

I recently ran into a surprising fact after staging my Play 2 project. I had two configuration files, application.conf, and prod.conf which get placed into target/scala-2.10/staged/classes/ when I ...
0
votes
1answer
38 views

play test resource folders not visible in eclipse

After project/Build.scala file is defined as val main = PlayProject(appName, appVersion, appDependencies, mainLang = JAVA).settings(defaultScalaSettings:_*).settings( ,resourceDirectory in Test ...
1
vote
1answer
85 views

In Playframework 2.1.x how to select the native coffescript in development mode only

In Play 2.1.x and higher you can use native coffeescript compilation by adding to Build.scala a directive like: coffeescriptOptions := Seq("native", "/opt/local/bin/coffee -p") This is a very nice ...
-2
votes
0answers
38 views

How can I mark an evolution as applied in production mode? [closed]

How can I manually mark evolutions as applied in the database? If I apply evolutions manually in production using the mysql console, Play! will complain that the database needs evolutions. Play! ...
0
votes
1answer
88 views

How can I get the body of an action as string

I have two actions. The first serves single assets and the second should serve all the single assets combined into one asset. So my idea was to call the first action which serves the single assets ...
1
vote
1answer
131 views

Play!Framework 2 Java model string field length annotations

To achieve best performance and validation convenience, which of these annotations are needed for a String field? database: MySQL A field to store district name @Column(length=50) // ...
-1
votes
0answers
46 views

need to know how can I keep play running in background in ubuntu [closed]

I am new to Play framework. I need to know how can play service continuously running as background service like postgres service. I am using Play framework 2.1.1 version with its in-built ...
1
vote
1answer
110 views

Compilation error when testing non blocking Redis client (Fyrie) on Play Framework 2.1

when I try to compile the following code import play.api._ import play.api.mvc._ import scala.collection.mutable.StringBuilder import net.fyrie.redis.RedisClient import ...
3
votes
1answer
145 views

Playframework 2.1.1 deploy on production server

What steps should I take to correctly deploy Playframework 2.1.1 website on production server? More specific questions: 1) Should I install Play on my production server? 2) Locally it is clear to ...
2
votes
1answer
127 views

Play framework - testing POST controller method

I wanted to test one of my POST methods in my controller, so I written something like this: @Test public void shouldSaveNewCollectionToDatabase(){ String body = ...
1
vote
1answer
134 views

Play 2.1.1 not loading custom Akka dispatcher

I'm using Play 2.1.1 and in application.conf I add the following custom dispatcher: # Dispatcher for round-robin actors play { akka { actor { rr-dispatcher = { ...
2
votes
1answer
128 views

Play framework - unit testing controllers with dependencies

I am in a process of writing web application that uses Play framework (2.1.1 version). I wrote my first, very simple, controller and I wanted to unit test it. The thing is, because Play controllers ...
0
votes
2answers
127 views

play framework - securesocial userpass implementation

I'm using Play 2.1 and securesocial master snapshot. I've implemented find & save of UserService (extends UserServicePlugin) as follows: Find method as below: def find(userId: UserId): ...
1
vote
1answer
83 views

Update the Task model - RuntimeException: DataSource user is null?

I started learning Play framework today and it is very good and easy to learn. I successfully completed the sample provided on their website, but I wanted to make some modifications to it. I wanted ...

1 2 3 4 5 9