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).
0
votes
0answers
14 views
Amount of connections are more then it may
I'm having a little bit of trouble with my play application and the database.
My postgresql server has a max connections of 150 and i have 5 applications running.
The db config looks like this:
...
0
votes
0answers
17 views
Play Framework Routes not working
I am just trying to follow along with the ZenTasks tutorial (http://www.playframework.com/documentation/2.1.0/JavaGuide4) for the Play Framework. I can't seem to even get the Login page to work ...
0
votes
1answer
14 views
play, scala and jerkson noClassDefFound error
I am trying to work with jerkson in play and with scala 2.10.
However, i want to load data fixtures based on a json files. for this prcoedure I'm trying to load the json with the "parse" command from ...
0
votes
2answers
24 views
Play framework tests with beforeeach
I'm trying to setup and tear down a database in Play Framework 2.1 test suite using Scalatest
we actually had setup with
running(FakeApplication()){
}
but I would like to setup the database ...
0
votes
1answer
26 views
what is the best way to pass a string between views
I want to pass a string to a "form" page template and then post the form and redirect to the previous page by using the string that I have sent. The reason that I want to do it is to prevent the POST ...
0
votes
0answers
11 views
Ebean fails to create multiple relations
I'm using Play! Framework 2.0, and using H2 DB. I've 3 simple Models that look like this :
@Entity
public class ClassA extends Model {
@Id
private Long id;
@ManyToOne
public ClassB ...
1
vote
0answers
20 views
Manual Evolutions
Is it possible to execute evolutions manually, i.e. from the terminal, rather than on page reloads? If yes, how? I've searched the documentation, but found nothing on the matter.
Thanks.
0
votes
0answers
9 views
How to lock a row in Ebean? (setForUpdate doesn't exist)
Context: ebean 2.7.3, playFramework 2.0.4, Finder/Query
How can you lock a row with ebean? I've searched for it and the only answer is that you can use setForUpdate(true) on a Query, but this ...
0
votes
1answer
24 views
Overwrite value of the Database, independent of the
Context: Ebean, play-Framework, Model, Optemistic Locking
Is it possible to set an annotation to a value of a model, which tells ebean that it shouldn't throw a "optemistic locking exception" for ...
0
votes
0answers
23 views
Play framework 2, AngularJS and internationalization
I'm currently implementing AngularJS in a Play framework 2 application, and it's good so far, but I'm facing some problems with internationalization. I have my messages files (messages.en, ...
2
votes
2answers
66 views
Populating set of enums based on booleans
I have a set: for argument's sake, let's call it fruitBasket: Set[Fruit]
The Fruit enum has values like Apple, Pear and Orange
I'd to populate fruitBasket with:
Apple if boolean hasApple is true
...
0
votes
1answer
32 views
What's alternative to minify javascript and combine in one file in Play Framework 2.1 + AngularJs?
I'm using Play 2.1.1 in Java which lately they have changed to use RequireJs instead of Google Closure. However, I'm building just a small application and I don't want to use RequireJs to optimise the ...
0
votes
0answers
10 views
How do I add add an additional role to a user?
I started with the tutorial site play-authenticate-usage. I Have play 2.1, deadbolt 2.1 and play authenticate 1.0
Unfortunately I am a JDBC guy and new to JPA and annotations.
Everything works fine, ...
1
vote
0answers
46 views
Play Framework CSS/JS aggregation
Is there a version of a press plugin for Play Framework 2 to minifi and aggregate JS and CSS? Are there alternatives? I hate 20 files being included into my templates.
Thanks!
0
votes
0answers
34 views
Unable to resolve reverse routing methods in IntelliJ
I'm following one of the play framework tutorials, but I'm getting compile errors whenever I try to use reverse routing. Firstly,
public static Result javascriptRoutes() {
...
-1
votes
0answers
21 views
Preventing DDOS attacks in Play Framework 2.0 [closed]
I'd like to protect my Play application from DDOS attacks. How to do that? I guess I should configure it in the application.conf file, but don't know exactly what to do.
Thanks.
0
votes
2answers
67 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 = ...
0
votes
1answer
40 views
Can I use multiple instances with one file logger?
I am using play file logger in multiple files like below:
Class1.java
private static ALogger logger = Logger.of("myAppLogger");
public void someMethodOfClass1() {
logger.info("This is Class1");
}
...
0
votes
0answers
26 views
Play framework, reads/writes top level property
I'm currently creating some json that looks like:
{"user":{"providerid":"userpass","firstname":"t","lastname":"b","fullname":"t ...
0
votes
0answers
29 views
play framework does not seem to have support for sending a 308 redirect
I can simulate the same using Redirect(308,url) but just wondering why it wasn't added as a Results.permanentRedirect(Call) helper yet. I hope they too are not waiting for the google drive API change ...
0
votes
1answer
34 views
Play Framework: Page cannot be resolved
im trying to use this method for routing in the controller class
public static Result show(String page) {
String content = **Page**.getContentOf(page);
response().setContentType("text/html");
return ...
0
votes
1answer
24 views
Deadbolt - Access failure redirect is not working
I am using Deadbolt 2 with Playframework 2.1
I have a public page from where the user clicks on a Action button and a Controller method is called, this method has @SubjectPresent on it. I want to ...
1
vote
0answers
9 views
Upgraded to SecureSocial 2.0.12 and now sessions are not being persisted
I was using secure social 2.0.7, and I’d implemented a UserServicePlugin, and users could log in. I could stop and restart the server (or recompile or whatever), and users would remain logged in.
...
0
votes
1answer
42 views
HTML attribute in Scala Template
I am a Java developer who recently started to learn about the Play Framework. I have been trying to get the below template working but cant seem to get it. I have got the following in my Scala ...
1
vote
1answer
53 views
play framework Localized routes
I'm using play 2.1.1 and java. My issue is how to route and create a non Latin url`s in order to improve the SEO of the site
I followed these links for information and examples :
Localized routes ...
0
votes
0answers
21 views
Selenium 2.32 with play framework
I want to use Selenium WebDriver 2.32 with Play Framework 2.0.4. After setting Selenium up in my current project, I ran into the same problem as: ...
0
votes
1answer
50 views
Play Framework and Forms
I am currently using the Play Framework but there seems to be rather little information regarding Forms.
At the moment I got something that looks like this:
The route is:
GET /test ...
1
vote
2answers
70 views
Basic Play framework routing and web sockets example
I'm trying to learn how to use web sockets in Play 2.1, and I'm having trouble getting the web socket URL to work with my app's routing configuration. I started with a new Play application and the ...
1
vote
1answer
33 views
Playframework & Guice without routing
I would like to know if it's possible to inject dependencies using Guice without having to pass by the routing.
If it is how can I call my class Test @Inject()... within my application ?
0
votes
0answers
21 views
PagingList page returning wrong row count in ebean
I am generating a PagingList from a table using RawSql.
I have two entities, TableEntry and TableEntryAvg. The latter is performing a GROUP BY on the first table to average rows together.
My call ...
0
votes
0answers
38 views
Play framework 2 + JPA with multiple persistenceUnit
I'm struggling with Play and JPA in order to be able to use two different javax.persistence.Entity model associated to two different persistence units (needed to be able to connect to different DB - ...
0
votes
1answer
35 views
how to allow default value selection in a @select helper? [Play 2 framework html5 helper tags ]
In my form, I've defined a drop-down:
@select(
myForm("category_id"),
options(Category.options()),
'_label -> "Category",
'_default -> "-- Choose a Category --",
'_showConstraints -> false
)
...
0
votes
1answer
40 views
scala template apply style to inputText's label [Play 2 HTML5 helper tag]
I am using scala template with input helper.The class attribute which i use applies style for the tag,how do i apply the style specific to the generated label.
@inputText(orderItem("item1"),'_label ...
0
votes
1answer
21 views
Why does my Play/Heroku/Postgres deployment fail with a password error?
I'm getting started with the Play Framework, and have a toy app that runs locally using an H2 in-memory database. My application.conf file looks like this:
db.default.driver=org.h2.Driver
...
0
votes
1answer
48 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
25 views
How do use EBean model inside main call from Play Framework2.1 Java
I would like to use EBean which comes with Play Framework 2.1 to setup some canned data. How when i run the main program I got some error like this.
Exception in thread "main" ...
0
votes
1answer
40 views
Bind Form from javascript Play framwork
Is there a way to use this code :
Form<StatusSolicitacao> status = form(StatusSolicitacao.class).bindFromRequest();
But the data coming from a javascript?
Thanks for your time.
--- More ...
0
votes
1answer
37 views
Play Framwork Parameter into Javascript
i hope someone help me
I'm trying to pass a parameter coming from my controller to a javascript, so i can edit the data.
But the javascript isnt accepting my parameter.
take a look on the code:
...
4
votes
1answer
38 views
Play modules test & FakeApplication
I would like to know what's the best way to run specs2 tests on a PlayFramework module and be able to simulate it running.
My module contains some routes in a file named mymodule.routes
In my apps I ...
0
votes
0answers
17 views
Play 2 - Tests NOT run when annotated with PowerMockRunner
We are facing a weird issue with Play framework and PowerMockRunner combination. As you can see the below example is a dummy one to simulate the issue.
JUnit Test Using PowerMockRunner
package ...
0
votes
0answers
34 views
Play Framework Sessions, Cache, and Java Collections
I'm creating a web service (in Java using the Play framework) which needs to keep track of some data across requests by user session. To accomplish this, I generate a unique token for each session ...
1
vote
2answers
95 views
Play framework 2 scala templates - JavaScript
I tried to Google but couldn't find much. I'm playing with play 2 framework and it provides you scala templates. I'm thinking to use backbone for my next project which comes with underscore templates. ...
0
votes
0answers
40 views
How to log remote hosts of requests in play framework 2.1.1
I am writing a web application using the latest play framework, 2.1.1. I try to log the remote address of the requests that generate insert, update, delete Ebean operations. After some google search, ...
1
vote
3answers
120 views
Internal redirect for POST in Play apps?
I'm using Play Framework 2.0.3 and would like to add a filter that will internally re-route certain requests (that is, without a 301/302) to a URL in the app that is determined dynamically. That is, ...
1
vote
1answer
31 views
Serving dynamic content in Play 2.x
On some level, I'm doing something very similar to this post: how to serve dynamic content in playframework 2
Which is that I have a web app where clients can specify various parameters and we have ...
1
vote
1answer
19 views
Play Global object (GlobalSettings) not being executed
I ran my application successfully on a server, with a custom config file specified on the command line using:
-Dconfig.file=app.conf
but when I tried to copy the custom config file to my local ...
1
vote
3answers
73 views
+150
Scala Play 2.0. Compilation error: IO error while decoding
I downloaded multi-module Scala project from GitHub, and one of the module is Play 2.0 module. So I can run whole application using SBT's run command on each module, and all works fine. But when I add ...
1
vote
4answers
74 views
Do async GET like in a loop but wait for response for each
I've googled this and cannot find an answer.
I want to make a GET to a url in Scala/play framework and then do something with the result. If the result contains what I want then I want to call it ...
1
vote
1answer
29 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
48 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 ...


