Play is based on a lightweight, stateless, web-friendly architecture and features predictable and minimal resource consumption (CPU, memory, threads) for highly-scalable applications.
0
votes
0answers
20 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
1answer
44 views
Getting The entire node set is unreachable error when trying to connect to MongoDB with reactivemongo in my play2 application
When working locally I have no problem testing my application by calling:
http://localhost:9000/r/123
method:
def showSurvey(id: String) = Action {
implicit val reader = Review.ReviewReader
...
1
vote
1answer
45 views
Internationalization for user defined input
I'm trying to build a localization for user defined input. Example: a user could define categories like soccer but in several languages.
The model entity could have a filed something like this:
...
2
votes
0answers
131 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 ...
1
vote
1answer
105 views
Mystery behavior of val, lazy val and def with an implicit conversion in my scala app
I have tested three variation of the same code and I got it to work just fine. I want to know why the different behavior.
So I have this working code, which converts a long time stamp to a string of ...
0
votes
2answers
106 views
Getter/Setter translation in Play Framework 2
Play Framework 1 had a great feature where directly assigning a value to a model property was automatically translated into a function call at runtime. Here are the docs. For example
model.fullname = ...
1
vote
1answer
55 views
Is there way to work with separated Play! 2 libraries in another scala project?
I want to use some of the Play2 libraries (for example, Json API and WS API) in separate scala project. Is there any way to add libs to a libraryDependency list at built.scala. Or may be I need to do ...
0
votes
1answer
51 views
play framwork JsRoutes ajax form submit
im trying to submit a form via JsRoutes and ajax and i dont think that im getting to the controller ....
this is my routes
POST /submit controllers.Application.submit()
and this is my ...
1
vote
1answer
62 views
How to add dependency on library that is published locally for Play Project?
I have a Play project that is intended to be a library that I would like to publish locally during development phase.
I can achieve this by running publish-local
My question is how to add dependency ...
0
votes
1answer
57 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 ...
0
votes
0answers
50 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
1answer
68 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 ...
2
votes
1answer
27 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
76 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
1answer
45 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
1answer
160 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 ...
2
votes
0answers
77 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
51 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
129 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 ...
1
vote
0answers
57 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
1answer
45 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 ...
2
votes
2answers
112 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
...
1
vote
1answer
66 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
113 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
72 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 ...
1
vote
1answer
84 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
112 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
45 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
164 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
142 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 ...
0
votes
1answer
63 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.
0
votes
1answer
88 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 => ...
1
vote
2answers
127 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
...
4
votes
1answer
110 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
127 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 ...
2
votes
2answers
101 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
52 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 = ...
1
vote
0answers
76 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 ...
0
votes
1answer
40 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
52 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
116 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
72 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
125 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
126 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
66 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
158 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
64 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
104 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
111 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
123 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"
...




