Tagged Questions

The Play! Framework is a modern Java and Scala web application open-source framework that provides a clean alternative to bloated Enterprise Java stacks.

learn more… | top users | synonyms (1)

75
votes
12answers
10k views

Should I use Play or Lift for doing web development in Scala?

I'm stuck on whether I should focus on Play or Lift for doing web development in Scala. Play looks very polished. The Scala-specific tutorial looks amazing. Furthermore, since I've been coding in ...
56
votes
6answers
11k views

Play Framework: Real-world production experiences? [closed]

Has anyone used the Play framework for a reasonably complex or large, deployed production app yet? If so, I would like to hear what the pros and cons of that experience were and what you might do ...
49
votes
8answers
5k views

any experience with “Play” java web development framework?

I've just stumbled upon the following new java web framework: Play http://www.playframework.org/ http://www.playframework.org/documentation/1.0/home with such a stunning list of features, I'm ...
24
votes
5answers
599 views

Why does java wait so long to run the garbage collector?

I am building a Java web app, using the Play! Framework. I'm hosting it on playapps.net. I have been puzzling for a while over the provided graphs of memory consumption. Here is a sample: The ...
24
votes
9answers
2k views

Play! framework uses a <lot> of statics

Waaah, the Play! framework has so many static methods. Where I go to school, we were told never ever to use any statics, yet Play! uses it like there's no tomorrow. Is that somehow okay? If so, why? ...
22
votes
7answers
5k views

Playframework vs Ruby On Rails

Yet another LanguageX vs LanguageY question.... Currently I have a bunch of apps built on playframework. For the most part I love it. Moving from PHP a few years ago was almost a religious ...
20
votes
5answers
5k views

What is pro and contra of using Play Framework?

Can you provide a brief comparison of Play framework vs: Spring Roo, Grails, Django. In terms of learning curve performance maturity speed development/code reuse convention over configuration
18
votes
1answer
1k views

Can someone explain how to use FastTags

There are two ways to create customs tags with the play framework. By defining a groovy template in app/view/tags Directly in pure java by having a class extend FastTags The latest is NOT ...
17
votes
9answers
3k views

Success stories from Play! Framework? [closed]

I'm evaluating the Play! Framework for my company. We're actually thinking about using it as spring's small brother (basically for "smaller enterprise projects"). Up to now, we use Grails there, but ...
17
votes
3answers
4k views

Frameworks comparation: Lift, Play and Wicket

What are the advantages and dis­advantages of frameworks Lift, Play and Wicket? What characteristics are best or only supported by each? Thanks
14
votes
1answer
332 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 ...
14
votes
5answers
5k views

RESTful on Play! framework

We are planning a project primarily serving content to mobile apps, but need to have a website. My question is whether is makes sense to use Jersey or Restlet to develop REST APIs for our mobile apps, ...
14
votes
2answers
4k views

Howto write custom checks/validation for the play-framework

I try to write checks for the play-framework and see two different possibilities. I described both and want to know if my understanding is correct (So it's more a tutorial than a question, specially ...
14
votes
17answers
3k views

Java web frameworks

I was looking around to see if there is an equivalent to django/RoR in java. I found: Play Framework Grails Does anyone have ever tried those frameworks, or do you know any other? Are they ...
13
votes
1answer
579 views

playframework owasp top 10

I think to use play for a large-scale project, so, has anyone have battle-tested Play Framework for OWASP top 10 ? Is there any security problems you know in playframework ? Regards,
13
votes
3answers
867 views

Errors in Eclipse for Scala project generated by Play Framework

I would like to use Eclipse as IDE for a Scala web application using Play Framework. I downloaded Eclipse 3.6.2. Then I installed Scala IDE 2.0 (beta) for Eclipse. I downloaded Play Framework 1.2.2RC1 ...
13
votes
3answers
3k views

Play framework : how to use “moreStyles” and “moreScripts”

In the file main.html, in default project created by Play!, there's this line : #{get 'moreStyles' /} I understand that if I need to add more styles, in my view script, I have to use #{set ...
13
votes
4answers
3k views

Playframework and Django

I have worked with Django before and have recently seen the Play framework. Is this the Java community's answer to Django? Any experiences with it? Any performance comparisons with other Java web ...
12
votes
5answers
680 views

Play! Java web framework. How does their development server compile automatically?

After looking at the Play! framework I find it really productive that the development server that it comes with automatically is able to compile .java files and show the changes, immediately. There's ...
12
votes
1answer
1k views

How does one create a Play Module?

The Play framework documentation is kind of weak when it comes to module creation. How does one creates a Module ? I've read that large applications could be split across several modules, how ? What ...
12
votes
1answer
638 views

How can I influence the redirect behavior in a play-controller?

In play you always follow the Redirect-After-Post-Pattern if you call from a public-method of a controller. This is in most cases a good behavior, but sometime it could be nasty. So I tried to find ...
11
votes
2answers
406 views

What are the advantages of the new Heroku Java support over Amazon Elastic Beanstalk

We're trying to decide whether to host our play! framework and mysql Java app on Amazon's Elastic Beanstalk or the new Heroku Java offering. I'm having trouble figuring out what the advantages of ...
11
votes
3answers
606 views

Play Framework: How to change play default packages?

I was just wondering if it is possible to change the default packages from Play. For example: I want to change the "controllers" package to "com.test.controllers". I don't know if this makes any ...
11
votes
1answer
1k views

How to extend the playframework?

Sometime it's necessary to extends a framework. Sometimes it's necessary to hook into the request/response lifecycle, for example for a parameter binding or to write a security module. How could this ...
11
votes
5answers
2k views

Wicket or Playframework?

I'm totally new to Java web development and I would like to choose a good Java web framework to learn. I've found some really good echoes regarding the Apache Wicket framework and the Playframework. I ...
11
votes
1answer
360 views

How do Play controllers inject variables with the proper name into templates?

In the Play getting started docs, they show this controller: public static void index() { Post frontPost = Post.find("order by postedAt desc").first(); List<Post> olderPosts = ...
10
votes
8answers
417 views

Performance drop after 5 days running web application, how to spot the bottleneck?

I've developed a web application using the following tech stack: Java Mysql Scala Play Framework DavMail integration (for calender and exchange server) Javamail Akka actors On the first days, the ...
10
votes
1answer
397 views

Playframework route file: Separate Production routes from Dev routes

Is there a way in Play to annotate routes to inform that a certain section/group routes is only available in dev or prod mode
10
votes
1answer
384 views

Performing code coverage using Clover on a Play! Framework Application using Ant

I'm writing an Ant script to do some additional checks on my Play! Framework Application. Currently, I am executing my tests from my Ant script by simply making an exec call to "play auto-test". ...
10
votes
9answers
3k views

Play Framework application deployment

it's been a long time working on a play app & now comes the time to deploye it. that my first time so i'm kind of lost. which hosting compagny is the best & offer good pricing ?
10
votes
2answers
1k views

How do I show SQL with Play Framework?

I have a Play app that uses a database, and for debugging purposes I want to show the SQL that JPA uses. How can I do this?
9
votes
3answers
175 views

Should authorization be part of the model or controller?

I'm writing a web application with some ACL requirements: a user can make changes to some items, some items may be editable by several users, administrator can edit anything and a manager can edit ...
9
votes
2answers
432 views

Howto validate image upload in PlayFramework?

I have to upload pictures with a few conditions : dimensions cannot exceed x pixels height, y pixels width, size cannot exceed b bytes on disk has to be a PNG or a JPG file has to be "resized" has ...
9
votes
3answers
856 views

Best deployment strategy for PlayFramework applications?

This question is server oriented. I have a hosted server (a rather small one, 1,6Ghz atom, 2Go, 200 GO) with a couple (4 or 5) play apps and more coming. Most of these apps have a real small usage, ...
9
votes
4answers
5k views

jQuery JSON response always triggers a ParseError

I am trying to preform some basic operations with jQuery and JSON. Presently having difficulty with jQuery accepting JSON response from my play framework application. Below is a simplified version of ...
9
votes
7answers
2k views

Generate Admin area ( CRUD ) on Play Framework

I'm following the Official tutorial for creating a administration area. I did the first step correctly but when i extend my controller class to CRUD i got an error (Crud not found on the project) + ...
8
votes
1answer
333 views

How can I deploy Play! framework application standalone (no war) and not include the source in app folder?

I am using play-1.2.3. I have performed the following steps: set to production in application.conf play precompile myApp remove app directory from myApp play run myApp -Dprecompiled=true The ...
8
votes
2answers
622 views

Enforce SSL on Play! Framework

I'm currently using Play! 1.2.2 and its new Netty client framework. I haven't found a straightforward method to enforce SSL, although can get HTTP and HTTPS to serve asynchronously. Does anyone ...
8
votes
4answers
2k views

Why Play! framework chose Groovy for template engine

From their website http://www.playframework.org/documentation/1.0/faq " The biggest CPU consumer in the Play stack at this time is the template engine based on Groovy. But as Play applications are ...
8
votes
2answers
686 views

How to perform file upload monitoring with Play! framework

Is it possible to monitor file uploads, somehow, with Play! framework? Also, if the file should be BIG (i.e. +500MB), would it be possible to save the received bytes into a temporary file instead of ...
8
votes
1answer
2k views

Play Framework 1.2: How to add custom module dependencies

I'm a bit lost in a migration to Play 1.2. We have a set of custom modules in our application. In Play 1.1.1 we used this structure: /root/ /module1 /module2 ... /moduleN /main app And ...
8
votes
1answer
842 views

Guide to proper escaping in Play framework

I'm trying to map out how the Play framework supports escaping. This is a nice page spelling out the needed functionality: ...
8
votes
3answers
868 views

Playframework Secure module: how do you “log in” to test a secured controller in a FunctionalTest?

EDIT: I'm using Play! version 1.2 (production release) I want to test controller actions that are secured by Secure module class, so I need to log in prior to testing my controller (otherwise I will ...
8
votes
1answer
568 views

How do Grails or Play detect changes and hot reload classes?

I'm curious does anyone know the details on how frameworks like Grails or Play detect changes in the code and automatically trigger a recompilation without rebooting the app server? Is there something ...
8
votes
3answers
738 views

How does the Play Framework function?

I love Play!. Compared to other enterprise Java frameworks, it's incredibly simple for the developer to use. But, how does it do that? What makes the edit-refresh cycle possible with a compile ...
8
votes
1answer
553 views

Where do I put startup code in Play Framework?

I want to run some code on startup to pre-cache some stuff, and would also like to start a Timer to re-cache some things outside the critical path of a web request. Is this possible with Play ...
8
votes
2answers
2k views

Play framework memory usage

I would like to ask you about your experience with play framework and it's memory usage. The thing is that I'm looking for a hosting for my play project (with Scala) and I'm a poor student so i need ...
8
votes
1answer
3k views

Simple ajax with Play!

I've been sifting through many jQuery ajax tutorials and attempting to incorporate it with my Play! app but I'm not quite understanding a few things. Is it possible someone could explain how to do the ...
8
votes
2answers
2k views

Web Frameworks: How is Play different from Spring MVC?

The Play Framework offers the following quick overview, but with the exception of the Groovy template engine (which you can get in Spring MVC if you want), Spring seems to offer all the same features ...
7
votes
1answer
235 views

Using Play 2.0 to create a web service

I found an old question "How to use the Play framework to develop a web service" I'm trying to use Play 2.0 and Scala to do the same. Will everything still be the same on Play 2.0 with the exception ...

1 2 3 4 5 32