Tagged Questions
0
votes
0answers
9 views
How to inject services into Play Framework 2.1 plugin?
I'm trying to write a plugin for Play Framework Java 2.1.1 and I would like to inject a service inside the plugin so I can unit test the plugin properly.
However, in the constructor I only have ...
0
votes
0answers
8 views
How to use AngularJs form submission instead of using form helper in Play Framework 2.1 Java
I'm struggling to find the solution for this. I'm building a single-page app in AngularJs and everything is coded in HTML already. And we want to keep the app flow as smooth as it is which is Ajax ...
1
vote
0answers
25 views
Play 2.1.1 building dependencies
I'm new to Play framework and working on a Java webapp using it. I understand to build play 2.1.1 applications, we need to use SBT.
Questions:
Is this the default build system for Play? Don't we ...
0
votes
2answers
30 views
Play 2.1 Java How to pass an object to a asynchronous function?
How can I pass the string object myString to the inner function in the Java Play Framework version 2.1, so that it is available within the inner function?
This is what I want to do:
String myString ...
1
vote
0answers
28 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
28 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 ...
1
vote
1answer
26 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
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
1answer
36 views
What's alternative to minify javascript and combine in one file in Play Framework 2.1 + AngularJs? [closed]
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
38 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() {
...
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
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
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
2answers
28 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
0answers
37 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
3answers
122 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, ...
0
votes
1answer
29 views
When saving data it stored only first iterated value
Here is my code:
Form<Tenantitem> tenantitemForm = form(Tenantitem.class).bindFromRequest();
String[] itemid = request().body().asFormUrlEncoded().get("idd");
String[] postAction = ...
0
votes
1answer
78 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
3answers
53 views
javax.mail.MessagingException while sending mail using JavaMail API
I am trying to send as email using JavaMail API, through my gmail account, but I am getting a javax.mail.MessagingException exception
The Code :
public static Result sendMail() {
Map < ...
0
votes
1answer
36 views
Ebean - Which find to use for multiple results?
I am using Play Framework and thus Ebean, I need to find the information inside the 'value' column by searching for the 'company_id'. However, There will be multiple rows with the same company_id and ...
0
votes
1answer
77 views
How do I run a Play Framework 2 app in dev mode on Heroku?
I created a staging app on heroku, and would like it to run in DEV mode. Also, I have my procfile set to use application.production.conf, but I would like it to use application.staging.conf in my ...
1
vote
1answer
32 views
Play2 Java - InvalidPropertyException when testing controller with form
I'd like to test a controller method named authenticate(), which has very simple logic: validating email and password from request and returning the result as JSON.
public class Users extends ...
-1
votes
1answer
50 views
SQL Exception Errors after pushing to Heroku
After pushing my Play Framework 2.0.4 to Heroku I am getting some SQL errors that are preventing view components from loading. After tailing the logs all of the errors are to do with one column of a ...
0
votes
1answer
29 views
Models subpackages in Play framework
The list of classes in my models package is getting pretty big and I want to refactor some of the classes into their own subpackage.
For instance, all forms go into models.forms, all users go into ...
0
votes
1answer
143 views
Play Framework 2.0 form helper: from select to List<T>
I have a model that contains a ManyToMany relation:
@JoinTable(name = "Contract_has_Institution", joinColumns = { @JoinColumn(name = "contract_id", referencedColumnName = "id") }, inverseJoinColumns ...
1
vote
1answer
76 views
What is the right way to run background task in Play 2.1 (Java)?
In my app I need to process uploaded documents and put results of processing in DB.
Documents are stored in file system and metadata is stored in DB.
For each document it is needed to open and process ...
0
votes
0answers
50 views
Ebean many to many doesn't load everything Play framework
I have an Ebean entity in my Play 2.0.4. application that represents a contract between a user and a client like so:
@Entity
public class Contract extends Model {
@ManyToOne
public User ...
1
vote
1answer
147 views
IntelliJ IDEA 12 with Play 2.0. No Java/Scaladocs
I configured IntelliJ IDEA 12 to work with Play 2.0 framework: installed Scala, Play 2.0 plugins and downloaded play 2.0.4 framework (I choosed play 2.0.4 root directory when created new project from ...
0
votes
1answer
22 views
Ebean Expression icontains List of elements
I have a query like this:
find.where()
.or(Expr.or(Expr.like("isbn", query),
Expr.icontains("book.tags", query)),
...
0
votes
0answers
105 views
Play Framework 2.1 ebean construction
I just started using Play Framework 2.1.1 as a Java developer.
Got some eBeans from an existing database and I'm building a RESTful architecture to serve and save those beans from a RESTful client ...
0
votes
0answers
35 views
Test WebSocket in PlayFramework
I have a WebSocket in my Play application and I want to write a test for it, but I couldn't find any example on how to write such a test. I found a discussion in the play-framework Google group but ...
0
votes
1answer
46 views
Ebean ManyToOne nullable join
I have two models :
@Entity
@Table(name="table_entry")
public class TableEntry extends Model {
@ManyToOne(fetch=FetchType.LAZY)
@JoinColumn(name="clone_id", ...
0
votes
1answer
92 views
Problems of executing a block of code asynchronously in play framework
I am using amazon s3 to upload photos as my service.
According to http://www.playframework.com/documentation/2.1.1/ThreadPools , the code must be blocking code.
"when your code may block include:
...
0
votes
1answer
58 views
Play SecureSocial customization
I just downloaded the SecureSocial plugin and installed it.
I have a webapp build using Play framework 2.1 in Java.
Now I don't how how to customize this module.
If I click on register I have a page ...
0
votes
0answers
46 views
Play Error executing DML bindlog column “MULTIPLECHOICE” not found
I use ebeans and the play framework 2.0.4. Everythings works the same way. With singletable inheritation by discriminatorcolumns. While you can see multiplechoice column should really exist in the ...
0
votes
1answer
39 views
Uploading file to play controller using jQuery Post
Can you please provide me a sample for uploading/ posting a file to play controller using jQuery
I am using play 2.0.1 and jQuery 1.7.2
Thanks in advance!!
0
votes
1answer
44 views
Play Framework - invoke a model method every n hours
I have a method in one of my model classes that removes model objects whose date field is out-of-date. I was wondering if there anyway to automatically run this method every 24 hours for example? Sort ...
0
votes
0answers
38 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.
3
votes
1answer
293 views
play framework migrate to 2.1.1 gives me a headache
So I wanted to start working on a play framework project of mine I abandoned 5 months ago, the project was still in version 2.0.4 and seeing 2.1.1 was the latest version I did this tutorial to update ...
0
votes
1answer
34 views
How can I keep the database data if the models changed
I'm working on a project with Play framework it uses EBean as an ORM API and I wonder how could i preserve the old data if I needed to change the models after lauching my application to the public ?
...
0
votes
0answers
66 views
Performance issue on MySQL RDS with Play Framework EBean
I have faced a performance issue on RDS. I'm using Play Framework 2.1.1 with MySQL. The query that I'm testing takes about 2 seconds on my local unmodified MySQL database which I installed from brew ...
0
votes
1answer
51 views
To which controller play delegates to?
Can I find out, to which controller play delegates to?
In this scenario:
public class Menus extends Action.Simple {
public Result call(Http.Context ctx) throws Throwable {
...
0
votes
1answer
69 views
Escape HTML in JSON with PlayFramework2
I am using PlayFramework2 and I can't find a way to properly handle HTML escaping.
In the template system, HTML entities are filtered by default.
But when I use REST requests with Backbone.js, my ...
1
vote
1answer
121 views
Play Framework 2 Render pdf
Is it possible to render pdf document with play framework 2?
(There is a module that can render pdf for play 1.x. is there a way to render in play 2?)
0
votes
1answer
117 views
Play 2 - Zentask Java Tutorial - jUnit ebean test failure
Solution: you dont need IDE for testing, just run "play test" in the console
Good Evening!
I just started to get into Play Framework, I worked with jUnit before and also used testing in ...
1
vote
1answer
77 views
Play Framework 2 Set form input class
I've read through documentation at http://www.playframework.com/documentation/2.0/ScalaFormHelpers and searched for the solution, but i can't figure out.
I can't imagine that you have to create ...
0
votes
2answers
72 views
Using Play! 2.0.4 with Play2war plugin
So I am developing an app with Play 2.0.4 and I need to create a WAR file. I tried using the Play2War plugin but I have no idea how to set it up.
I tried following the configuration ( ...
0
votes
1answer
125 views
Play Framework 2.1.1 doesn't invoke mockito.
I'm trying to mock Model.finder to test my service, but it seems mockito isn't being injected for some reason and I cannot figure out why. Please help.
public static Result deals() {
...
1
vote
1answer
46 views
Custom error page for configuration error in Play framework
When my Play 2.0.4 application is running but my database is down, Play will show visitors a default Configuration error - Cannot connect to database-page.
Besides the problem that this prints out ...
2
votes
1answer
54 views
Sbt package manager not resolving at Heroku
Hi guys im trying to add a new bonecp version to my play framework 2.0.4 app at heroku,
but im getting
[info] downloading ...



