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).

learn more… | top users | synonyms (1)

0
votes
1answer
85 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
53 views

Error: module not found: org.scala-sbt#sbt;${{sbt.version}}

I m trying to run Play application which was built by some one else. I am getting Error: module not found: org.scala-sbt#sbt;${{sbt.version}} error when running play command.
0
votes
1answer
49 views

Adapt Enumerator / Iteratee to Stream

I have a Spray application where I'm using reactive-mongo to connect to my Mongo database. val collection: BSONCollection = db("ping") val cursor: Cursor[Ping] = ...
0
votes
1answer
50 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
3answers
60 views

Page specific javascripts in Play

I'm building a small application in Play and have an 'outer' template which holds all my CSS and JS imports (jQuery and my main.js file). CSS at the top, JS at the bottom with a body tag in between... ...
0
votes
0answers
39 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
2answers
81 views

Iterate Set in order Play Framework

I pass my template a TreeSet with Strings. However, when I loop over the set like this: @(usernames : TreeSet[String]) @for( name <- usernames){ @name , } However, the names are never ...
1
vote
2answers
83 views

Large assets in play framework 2.1

I have a huge directory of data (~30GB) which contains files i'd like to serve in my Play application. When I place the directory in the public folder, the application wont finish compiling and will ...
0
votes
1answer
83 views

Restful (and Stateless) Auth with Play Framework and Scala

I have recently been thinking about how to get my webframework/application-stack right. I'm slowly moving over to scala and functional programming (coming from Python with CherryPy). So it was natural ...
1
vote
1answer
49 views

Emberjs Delete url goes without id

i have this task creator with emberjs and an API made in scala with play framework. When I click the delete button i go to the taskController to do this: Tasks.TaskController = ...
1
vote
2answers
46 views

Load file from '/conf' directory on Cloudbees

What we do : We run Play2 application on Cloudbees and we load a file from '/conf' directory (inside the classpath of the application). These 2 snippets work in local and at heroku ...
1
vote
2answers
129 views

Play Framework 2 Scala WS Doing a Sync Request

I am learning Scala. I used to use Play Framework 2 Java and trying to rewrite some of my previous work using and learning Scala. I need to do a sync WS request and get Result Object from it ...
0
votes
1answer
37 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!!
1
vote
2answers
59 views

How to make newly created static files accessible in play production mode?

I did some experiments, when running server using start command in production mode, if there are new static files generated under the public path, those new static files can not be accessed by clients ...
0
votes
1answer
49 views

What's the difference between using play start and play run?

I am using play framework 2.0.4, I noticed that in the project folder, if I used play start, the server responses faster than server started via play run. However, user can not access static ...
0
votes
1answer
43 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
37 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.
1
vote
1answer
56 views

Getting URL of current page loaded

I am asking this question because it is loosely related to another one of my posts. Is it possible in the play framework (2.0.4) to retrieve the URL of the page currently loaded? For example if I ...
3
votes
1answer
246 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
0answers
35 views

Playframework not displaying compiled templates in Browser

I am facing a problem with Play Scala Templates. When I make changes to the template files the files are compiled by Play. I know this because I run the server using ~run which essentially shows the ...
0
votes
1answer
36 views

ebean generates non-mysql-compatible evolutions

I was developing on my machine with Postgres and everything was nice. But after moving to the server with MySQL and provided in application.conf with: db.default.driver=com.mysql.jdbc.Driver ...
0
votes
1answer
31 views

Export path for play 2.1.1 on terminal whenever opening a new terminal

I installed the play2.1.1 as the website says(http://www.playframework.com/documentation/2.1.1/Installing). I can successfully do things in terminal like: $play help play new my5app However, as ...
1
vote
0answers
39 views

Play Cache unable to deserialize case class

Seems the Play Cache (i.e. ehcache) is having trouble deserializing my case class. I'm seeing java.io.InvalidClassException (no valid constructor) Is there a straightforward way around this? I ...
0
votes
2answers
66 views

ReactiveMongo - getting latest document in collection?

I've probably missed something obvious, but within the ReactiveMongo API (v0.8) how do you set a limit on the number of documents returned by a query? I'd like to return the single most recent ...
-1
votes
0answers
37 views

how to use subproject for main project settings [closed]

I have use subproject for add assets compiler for Play project. I want to get something like this object ApplicationBuild extends Build { val appName = "Kitchen" val appVersion = ...
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
1answer
27 views

Including reusable blocks from a template into another template

I would like to use a reusable block from a template in my another templates. How can I do that? More specifically: I have a template views/main.scala.html containing this tag @logo_header = { ...
0
votes
0answers
57 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
2answers
103 views

Iterating over an array in JSON with Play 2.1.1

I am using play 2.1.1 and I am having issues iterating through an array. I had read somewhere that you can create a reads for a List[Object] but everytime I try to do this I get an error "No unapply ...
0
votes
1answer
40 views

Heroku is switching my play framework 2 config file

I have a Play! application which is on Heroku. My config file is different between my local application and the same on Heroku. Especially for the URL of my MongoDB base. On localhost my base ...
0
votes
1answer
49 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 { ...
2
votes
2answers
89 views

Need reference to open source play framework based scala apps [closed]

I'm about to start small project using play2 and curious if there are any other sample applications available except ones which are coming together with play distribution.
0
votes
1answer
56 views

TypedQuery result incompatible using Hibernate and PlayFramework

i'm having this problem when calling this simple method that allows me to get a user by it's Username: @Entity public class User { @Id @GeneratedValue(strategy = GenerationType.AUTO) ...
3
votes
2answers
127 views

Typesafe stack not get project template - Exception fetching from github Unexpected response code: 403

I'm trying typesafe stack. Yesterday, I can get project template of typesafe stack. $sudo g8 typesafehub/akka-java-maven Today: I can't get project template. $sudo g8 typesafehub/play-java ...
0
votes
1answer
53 views

getting “incompatibe type” in returning an object instace

I'm writing a Play! 2.1 application using ReactiveMongo. each persistable case class has an object that holds 2 implicit objects, implementing BSONReader[...] and BSONWriter[...], and each case class ...
0
votes
0answers
53 views

sbt cannot resolve ensime-sbt-cmd in a Play2-Scala project

I'm trying to configure Sublime Text 2 to better support working with Scala and Play! 2 Framework by following instructions from ...
0
votes
1answer
65 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 ...
0
votes
1answer
76 views

Improving play template with javascript code

I have a play-template with javascript code in it. Everything works but it has two disadvantages: Bad readability with eclipse-play-plugin, javascript is not colored in code highlighting I can't ...
0
votes
1answer
68 views

how to pass the select option value into “href” in play framework 2.0.4 java

view: <select name="id" id="drop"> @for(pag <- page){ @if(pag.tenant_location_id == loc.id){ ...
0
votes
1answer
93 views

display photos in grails vs playframework

I have been doing some tests using Grails framework and now I'm trying to do something similar in playframework. Basically, I want to display some pictures, but to hide (in order to be able to avoid ...
0
votes
1answer
49 views

named database in Play and Squeryl test gave error

I followed this link “Test the Model” part to write a test in Play and Squeryl. But I am using a named database "test" rather than "default". The following code does not work import models.{AppDB, ...
0
votes
1answer
76 views

Can i use a javascript variable in an if sentence in scala in play framework?

I have a dropdown list: <select id="sel"> <option value="1">test1</option> <option value="2">test2</option> <option value="3">test3</option> </select> ...
0
votes
1answer
36 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 ...
0
votes
3answers
56 views

Remove Dom Element with jQuery

I try to remove a div out of the dom-tree with jquery in a play application like this: <form class="form-search"> <input type="text" class="input-medium search-query" ...
0
votes
1answer
34 views

Store images into a specified location on local system

I am using Play Framework 2.0.4. Here is my code that I have tried : public static Result save() throws FileNotFoundException { Form<Tenant> tenantForm = ...
0
votes
0answers
109 views

Test Driven Developement in SCALA [closed]

I am new to SCALA. Can you guide me about how to do with Test Driven Development(TDD) using SCALA. I knew about specs2, but I am looking for more examples. I am following Play scala reference but ...
1
vote
1answer
109 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?)
1
vote
0answers
35 views

Getting a Play/SBT app to depend on a Maven POM

My Play 2 application is a subproject of a larger Maven application. The Play 2 app has dependencies in its parent - it gets its data access from it. Therefore, I want the Build of the application to ...
0
votes
1answer
73 views

sbt.ResolveException on compilation in IDEA

Everything works fine when I run "play clean compile" directly from comsole. But if I'm clicking "Make Project" from IDEA I get: Play 2 compiler : (*:update) sbt.ResolveException: download failed: ...
0
votes
1answer
100 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 2 3 4 5 53