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

4
votes
0answers
144 views

Strange exception when logging set to trace in Play Framework 2.1

I am seeing a strange exception when I turn on trace logging on my Play 2.1 with Scala project. This exception is seen whenever I invoke a controller including the following controller which is ...
4
votes
0answers
84 views

How use wro4j in play framework 2.1

there is a way to include wro4j http://code.google.com/p/wro4j/ in java play framework 2.1? i need to compile hogan.js templates and do much more without reinvent the route. maybe i should use ...
2
votes
0answers
64 views

Play Framework 2.1 : Performance issue with play.libs.WS

I have a Play 2.1 Java webservice, that calls another webservice. My service serves JSON made with transforming the XML response of the other webservice. Initially , I was using a Jersey-Client lib ...
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
0answers
111 views

unable to deploy play 2.1 scala app to heroku

when I try to deploy my play scala 2.1 app to heroku I get the following error: [info] Wrote /tmp/build_36s2qu6pn5i6k/target/scala-2.10/get2play_2.10-1.0.pom [info] Packaging ...
2
votes
0answers
177 views

RequireJs optimization of template script

I have some client javascript and scala page template. I have to init some js stuff in the template (by params provided to template using scala). But now we try to migrate to requirejs and we don't ...
2
votes
0answers
166 views

Migrate from Play 2.0.4 to 2.1: Tika doesn't find my class anymore

I migrated a web application from Play Framework 2.0.4 to 2.1. The application uses Apache Tika (V. 1.3) with a custom parser as described here on the Tika-Homepage. A file ...
2
votes
0answers
361 views

Java Play 2.1RC2: submitting a form: bindFromRequest() not working, request().body() is null

I'm trying to submit a User form in Play 2.1 RC2. here is users.scala.html, which displays the user form: @(users: List[User], userForm: Form[User], isReadOnly: Boolean) @import helper._ @import ...
2
votes
0answers
202 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
125 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. ...
1
vote
0answers
40 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 ...
1
vote
0answers
42 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
0answers
53 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
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
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 ...
1
vote
0answers
182 views

Play Framework with Akka and Websockets

I have a simple websocket connection setup through Play 2.1 that connects to a javascript frontend. I have a random number generating loop on the server that generates a random number and sends out ...
1
vote
0answers
52 views

Error using instrumentation class with -javaagent on play framework 2.1.0-java

I've been using an instrumentation class "SizeOfAgent" to calculate memory requirements on my play 2.0.4 environment. In order to do that I have put "-javaagent:lib\sizeof.jar" on the java command ...
1
vote
0answers
121 views

Play [2.11] jpa transaction

I am trying the play framework with JPA hibernate, looks only can put the @Transactional on the controller class. I plan to create another layer Service might be used for WS or mobile client. I want ...
1
vote
0answers
264 views

Play Framework 2.1: Overriding configuration file programmatically in Global settings

I'm working to develop a multi-tenant Play Framework 2.1 application. I intend to override the onRequest method of the GlobalSettings class to load and set a custom configuration based on the ...
1
vote
0answers
95 views

RPC style API, swagger and Play framework 2 (swagger-core)

I am implementing an RPC type API app. I am using Java on play framework. I already used swagger modules to generate swagger documentation for simple rest APIs where each "URL" mapped to a different ...
1
vote
0answers
191 views

Play 2.1 two consecutive promises 2nd one failed to return

I put two promises in the following order and map promises to string result immediately after getting promises. The 2nd promise result will fail to return. The error happens only in 2nd promise ...
1
vote
0answers
119 views

Playframework 2.1.0 Apache 2 Deployment CentOS 6

I've developed an web application with Playframework 2.1 and I want to deploy it in a VPS with only 128MB of RAM Memory. I was hopping that I could use the same VPS to other web sites (using Apache 2) ...
1
vote
0answers
63 views

How to implement a new guice scope that caches and return named instances?

I want to be able to connect to various back-ends by changing a custom header of my HTTP requests. Therefore I want that my request is served with a controller instance that is specific to the ...
1
vote
0answers
118 views

Don't include module in optimized script

I'm using play 2.1 and requireJs bundled with the framework. I have some client javascript modules and some libraries (such as jquery, bootstrap, etc). I want to get following combined/minified ...
1
vote
0answers
78 views

Play2 and Scala - Static files and I18 messages in my JS files

When posting a form in my web app I perform a couple of checks in javascript before validating the form in the backend. The js validation is dependent upon I18 messages and images. If this was a scala ...
1
vote
0answers
30 views

Unused variable portion in a route?

I'm using Play! Framework 2.1 (Java version). I have a route that will look something like this: http://www.mydomain.com/games/52/super-mario-bros The "super-mario-bros" part is arbitrary and only ...
1
vote
0answers
89 views

How do I store playframework database configuration on the tomcat classpath?

I'm using playframework 2.10 and use play2war plugin to deploy it to tomcat. I don't like the way play framework stores database configuration properties in application.conf. It doesn't seem easy to ...
1
vote
0answers
83 views

Extending play body parsing

We are building a play app in Java. We are using play 2.1. I'm stuck at how can I extend play to parse body based on the url query parameter instead of content-type header and return the result as ...
1
vote
0answers
285 views

play framework 2.1 with tomcat 7

Hej guys I've just used play framework WAR plugin togethor with maven plugin and create a war file , and I got an exception while deploying to tomcat java.lang.IllegalStateException at ...
1
vote
0answers
112 views

Playframework NoSuchMethodError

I've got a problem when trying to use Slick... I've followed exactly this article at first. Everything is good until I add Bars.ddl.create in Global.scala. At this point it launches the excpetion ...
1
vote
0answers
166 views

Play Framework 2.1 - Scala - generate forms in code

I would like to create forms in code, not in a template, so that I could pass just an interface implementation to a template and then call its method like formHtml. However, when trying to use the ...
1
vote
0answers
181 views

Play 2.1 Local Dev Mode complaining 'Cannot load ManualInjectionPlugin plugin'

I got this error when upgrade to Play 2.1. 'play compile' is fine. However, I am not sure where this error comes from? $ play ~run [info] Loading project definition from ... --- (Running the ...
1
vote
0answers
178 views

Structuring multiple Play Framework (2.1) projects for inheritance

I am looking to create a number of sites using Play, but want to structure it in a way so that most of the code and routes can be shared. I have seen many examples of projects that depend on other ...
0
votes
0answers
11 views

Compiler [warn] postfix operator tupled should be enabled on Play 2.1 JSON Parsing Controller

I've implemented my first Play 2.1 Controller based on an example from the Play Framework doc site at http://www.playframework.com/documentation/2.1.1/ScalaJsonRequests . The operative part of my ...
0
votes
0answers
12 views

Cache object's classloader in play 2.1.1

I'm using play 2.1.1 and SimpleJPA with EhCache. SimpleJPA uses ehcache for caching values. In dev mode when I make some changes in code play automatically reloads the application. This possible by ...
0
votes
0answers
43 views

Play 2.1(scala) - How to write Format[T] for scala enumeration case class

This question is related to the following two questions. We wanted to use enumeration in a model in our play 2.1 application so we found the following question How to write Reads[T] and Writes[T] in ...
0
votes
0answers
8 views

Converting Dispatch code to Play 2.x WS

Here's some code that uses Dispatch. How do you convert it to use Play's WS? Does Play have some sort of operator to make path concatenation easy like the / operator here? Thanks. val feeds = ...
0
votes
0answers
17 views

Play framework recompiles without changes in file

I use play! 2.1.1. Project running in Dev mode (play ~run/play run). Every time when I open any page, Play Framework recompile my "controllers/Application.java" file (without changes in this file). ...
0
votes
0answers
22 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
21 views

Getting Warning message while starting play application

After creating paly application and while starting play application i am getting following warning [warn] Host repo.typesafe.com not found. ...
0
votes
0answers
26 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
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
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 ...
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 ...
0
votes
0answers
43 views

How to JSON Transform and validate at least one field?

I'm looking at the restricted update example in the Json coast-to-coast article (http://mandubian.com/2013/01/13/JSON-Coast-to-Coast/). In the example there's a validator called ...
0
votes
0answers
93 views

Array[String] as parameter to play framework 2.1 Java controller function

I want to call controller function with Array[String] input in playframework 2.1. Java, I am getting an error: No QueryString binder found for type Array[String]. Try to implement an implicit ...
0
votes
0answers
33 views

Import class from Mainprojekt in subproject

I have an play application with the following structure: -mainApp -app - controllers - models - services - views -test -modules ... And i have a subproject in the modules folder. Now ...
0
votes
0answers
35 views

PlayFramework passing model objects from template to controller

Play framework 2.1 java - how to pass a model object back to controller from template and javascript? Route definition Get /ualog controllers.Jsroutecall.ualog(ualog: UsageAnalytics) ...

1 2 3