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)

60
votes
5answers
11k views

How to avoid passing parameters everywhere in play2?

In play1, I usually get all data in actions, use them directly in views. Since we don't need to explicitly declare parameters in view, this is very easy. But in play2, I found we have to declare all ...
23
votes
3answers
13k views

Steps needed to use MySQL database with Play framework 2.0

I'm new to Play framework. I'm trying to configure MySQL database as a datasource to be used with Play Ebeans. Could you some one please explain the steps that are needed to configure MySQL with ...
26
votes
7answers
14k views

How do I change the default port (9000) that Play uses when I execute the “run” command?

How can I change the default port used by the play framework in development mode when issueing the "run" command on the play console. This is for playframework 2.0 beta. Using the http.port ...
16
votes
3answers
6k views

Play 2.x: How to make an AJAX request with a common button

So I have successfully gotten ajax requests to work before but I have always had to use a form, and then at the end of the submit do return false so that it doesnt refresh the page. I have also just ...
12
votes
4answers
4k views

How to package the project to war in play2?

In play1, we can package the project to a war, then put it in a tomcat: play war But how to do the same in play2? play war doesn't work, it reports war is not a valid task.
5
votes
3answers
2k views

Mock Objects in Play[2.0]

I want to test my Play application by providing mock objects during a test. Off the top of my head, there are a few ways to go about this. Provide an alternative route files during testing Use ...
3
votes
1answer
310 views

Why Ebean returns null for no reason?

Using Play Framework, I have a model like this : class MyModel extends Model { // Some columns @ManyToOne public OtherModel other; public OtherModel getOther() { return ...
9
votes
2answers
2k views

How to make Eclipse see the changes in Play! compiled templates?

So, I'm trying out Play 2 with Eclipse. I create a new project, compile it, run eclipsify and import it into Eclipse. So far so good. The problem I'm having is that when I make a change in the Scala ...
39
votes
6answers
7k views

What are the major differences between Play Framework 1.0 and 2.0?

With the recent release of Play Framework 2.0, I would like to know if anyone could summarize ,from a high level standpoint, the major differences between Play Framework 1 & 2. I already compiled ...
1
vote
1answer
850 views

Errors in evolutions on Heroku

I tried pushing some evolutions to Heroku: 2012-08-30T10:58:00+00:00 heroku[slugc]: Slug compilation finished 2012-08-30T10:58:02+00:00 heroku[web.1]: Starting process with command `target/start ...
10
votes
1answer
5k views

Use of option helper in Play Framework 2.0 templates

I'm trying to use views.html.helper.select (documentation here). I don't know scala, so i'm using java. I need to pass object of type Seq[(String)(String)] to the template right? Something like: ...
3
votes
2answers
2k views

Java Play! 2 - User management with cookies

I am trying to manage my user via cookie. It's not that easy because there is absolutely no documentation about this topic. With the help of the sample "zentask" I made this: session("username", ...
21
votes
2answers
1k views

How to get the client IP?

While this sounds silly, I haven't been able to find a way to get the IP of the client in Play 2.0. It was available in 1.2.x as Http.Request.remoteAddress, but 2.0 (I primarily checked the Scala API, ...
4
votes
4answers
4k views

Accessing the application.conf properties from java class with Play! 2.0

I want to add an object to the Global scope, and in order to construct it I need to pass it a path to a file. I don't want to hard code the file path in the source, and so I want to get that path from ...
9
votes
4answers
4k views

How to manage application.conf in several environments with play 2.0?

With Play 1.2, I can prefix the configuration keys with the framework ID or application mode as follows: # Production configuration %prod.http.port=80 %prod.application.log=INFO ...
7
votes
3answers
2k views

How to set up different databases per environment in Play 2.0?

I'd like my Play app to use different databases for test, local and production (production is Heroku) environments. In application.conf I have: db.default.driver=org.postgresql.Driver ...
7
votes
4answers
4k views

Where is the job support in Play 2.0?

In Play 1.0, we can define some jobs which will be executed in the background: @OnApplicatonStart @Every("1h") public class DataJob extends Job { public void doJob() { // ... } } But ...
7
votes
2answers
2k views

Playframework Plugin non-functional in IntelliJ IDEA 12

I have just downloaded and installed IntelliJ IDEA 12 (Ultimate Edition), under Ubuntu, with high hopes that I could cash-in on IJ's tight integration with Scala and the Play Framework. I have a ...
2
votes
1answer
553 views

Play 2.0 Framework external Model in Template

Is it possible in Play 2.0, to make use of external model objects in a template? I can reference model objects from another jar in a Controller class. I don't know how to reference external model ...
11
votes
6answers
11k views

How to use Twitter Bootstrap 2 with play framework 2.x

I know that current Play! distribution has a helper for Bootstrap 1.4. What should I do if I want to use the current version of Bootstrap?
4
votes
1answer
2k views

How to create a custom validator in Play Framework 2.0?

Play 1.0 comes with a full featured validation framework base on http://oval.sourceforge.net/. With the release of 2.0, my custom validators do not work anymore. How does one create custom validator ...
4
votes
3answers
1k views

How do I run a Play Framework 2.0 application as a Windows service?

I have a Play Framework 2.0 application that I want to deploy (production) on Windows Server 2008 R2. How do I get it to run as a service?
7
votes
2answers
2k views

play framework 2.1 - scheduling async tasks

In play's 2.0.x doc you can see how to schedule asynchronous tasks: http://www.playframework.org/documentation/2.0.4/ScalaAkka Akka.system.scheduler.schedule(0 seconds, 30 minutes, testActor, ...
4
votes
1answer
5k views

Using Eclipse with Play Framework 2.0

I am new to Framework 2.0. In Play 1.0, after you Eclipsify your project, you have have a *.launch file that you can use to launch your project. After you eclipsify in Play 2.0, you don't seem to ...
14
votes
1answer
4k views

Play! 2.0 and Google App Engine

Did anybody try to get play 2.0 on GAE? Play is now based on sbt, technically sbt-appengine-plugin should work. And if you have tried, what is your datastore setup?
11
votes
4answers
4k views

Access Play! 2.0 configuration variables in application.conf?

Previously in Play! v1 it was really easy to define configuration variables in application.conf and then access them like so: play.configuration("db.driver") However now I can't find anything in ...
22
votes
4answers
2k views

How to contribute modules in Play Framework 2.0?

The original Play Framework 1.x had an elegant and simple module management system. Coupled with the Play repository, it was a great way to quickly enhance an application with third party components ...
7
votes
1answer
2k views

How to bind Double parameter with Play 2.0 routing

I'm learning myself Play 2.0 (Java API used) and would like to have a double/float parameter (for location coordinates), something like ...
6
votes
1answer
2k views

Setting HTTP headers in Play 2.0 (scala)?

I'm experimenting with the Play 2.0 framework on Scala. I'm trying to figure out how to send down custom HTTP headers--in this case, "Content-Disposition:attachment; filename=foo.bar". I can't seem to ...
4
votes
2answers
450 views

Why makes calling error or done in a BodyParser's Iteratee the request hang in Play Framework 2.0?

I am trying to understand the reactive I/O concepts of Play 2.0 framework. In order to get a better understanding from the start I decided to skip the framework's helpers to construct iteratees of ...
3
votes
2answers
2k views

How to manipulate Session, Request and Response for test in play2.0

Hi I had an authentication service which works on Request (some Header-Data and Cookie), Response (to set or delete a cookie) and session (Store userId and rememberMe-information). In play 1.x it was ...
2
votes
1answer
798 views

Uploading file as stream in play framework 2.0

I'm writing a play 2.0 java application that allows users to upload files. Those files are stored on a third-party service I access using a Java library, the method I use in this API has the following ...
1
vote
2answers
1k views

QueryStringBinder for List[String]

Using Play 2.0.1 I defined the following route: GET /demo/list controllers.Demos.listDemos(page: Int ?= 0, orderBy: Int ?= 1, nameFilter: String ?= "", versionFilter: Long ?= -1, tagFilter: ...
6
votes
4answers
4k views

Debug Playframework 2.0 in Eclipse

There's no eclipse folder in project folder after 'play eclipsify'. How to debug this project use eclipse with JPDA?
5
votes
2answers
3k views

Using scala 2.9.2 with Play?

I have a Play project. Unfortunately I am deserializing some case classes that were serialized using scala 2.9.2. Since play uses 2.9.1 there is a InvalidClassException. Caused by: ...
4
votes
2answers
2k views

Test MultipartFormData in Play 2.0 FakeRequest

I'm trying to create a function test for a Play 2 controller which takes multipart form data as input. There is no method currently in FakeRequest to support multipart form POST. What other ways to ...
3
votes
3answers
939 views

Play! framework - database issue with Evolutions

I'm using Play! framework 2.0 and I'm stuck on an annoying issue involving the database. Suppose I have a User (extends Model) class which has few attributes (first_name, last_name, email, password ...
3
votes
1answer
1k views

Play Framework 2.0 schedules an Akka Actor at server launch

I have an Akka actor that validates random data and makes some changes to it based on that data's show time and updates it. Currently what I'm doing is using this code inside a controller: static ...
3
votes
1answer
1k views

i18n error: controller and templates uses different implicit languages

Controller: def test = Action { implicit request => import play.api.i18n._ val msg = Messages("error.invalid") implicit val langInController = lang(request) ...
2
votes
3answers
1k views

Play Framework 2: Read the application version defined in Build.scala

I use the Play Framework 2.0 (2.0.3). I have a Java project and want to read the application version (appVersion) defined in Build.scala. What I already saw is that it's possible to read certain ...
2
votes
3answers
764 views

Calculation in Play 2.0 Framework template engine

Does play 2.0 template engine support the simple calculation in the html page. Let us say, I create a sum.scala.html page: @(a:String, b: String) <html> <head></head> <body> ...
1
vote
5answers
6k views

Using json with Play 2

I'm trying to create a simple application that allows me to create, read, update and delete various users. I have a basic UI-based view, controller and model that work, but wanted to be more advanced ...
4
votes
3answers
3k views

How to serve uploaded files in Play!2 using Scala?

I'm trying to allow users to upload photos to the server and then view them. Uploading happens as described in this guide. Here is the code: def upload = Action(parse.multipartFormData) { request ...
3
votes
1answer
391 views

filterMany for Play 2 returns all results

I am using Play 2.0.2 with ebean. In Info class, I defined @ManyToMany(fetch=FetchType.EAGER) private Set<MemberInfo> members; private Date createdDate = new Date(); And MemberInfo has ...
3
votes
2answers
1k views

Play Framework 2.0: Custom formatters

I'm trying to write a custom formatter (for DateTime fields, as opposed to java.util.Date fields), but am having a hard time getting this to work. I've created my annotation, as well as extended the ...
3
votes
1answer
578 views

Reload app on custom file change in playframework

In playframework there is auto-reload feature. It means that in development mode on each request play checks files on changes, and recompiles and reloads project if necessary. So, for example if I $ ...
2
votes
1answer
332 views

How is it possible to pass multiple params into a template in Play 2.0?

i want to render to my template 2 things at the same time like this: String one = "one"; String two = "two"; return ok(template.render(one,two)); but Playframework says, it is wrong. how is it ...
2
votes
1answer
2k views

Creating a custom field constructor in Play 2 (scala)

I am trying to grok the instructions given in the play 2 scala tutorial for form template helpers. I am getting stuck in the section "Writing your own field constructors". It gives a sample template ...
1
vote
1answer
403 views

How to pass a variable being an array in JavaScript to a controller accepting List[String] as a parameter?

The setup: Using Play! framework v 2.0.4 The controller: def javascriptRoutes = Action { implicit request => Ok( Routes.javascriptRouter("jsRoutes")( ...
1
vote
1answer
306 views

Play2 Framework proxy streaming content to client keeps connection open after streaming is done

The below code does streaming back to client, in, what I gather is a more idiomatic way than using Java's IO Streams. It, however, has an issue: connection is kept open after stream is done. def ...

1 2 3 4 5 6