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. Play has two version Play 1.x (Java & Scala) and Play 2.x (Java & Scala). The two versions are quite different, so be aware of which ...

learn more… | top users | synonyms (1)

10
votes
1answer
3k 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 ...
2
votes
1answer
2k views

how to use “war.context” in Configuration file of Play Framework?

how to use "war.context" in Configuration file of Play Framework ?
17
votes
1answer
2k 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 ...
12
votes
4answers
9k 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 ...
52
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 ...
7
votes
3answers
3k views

PlayFramework: Ajax + Drag n' Drop + File Upload + File object in controller?

Does anyone know of a way to upload a file via Ajax and using drag n' drop from the desktop that supports PlayFramework's ability to convert file uploads to a File object? I've tried several ...
24
votes
3answers
5k 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
13
votes
5answers
2k views

Experiences on free and low-cost hosting for play framework applications? [closed]

I'd like to know your experience finding a host for play applications on free or low-cost servers So far now I found the following options: Playapps A cloud hosting solution by zenexity, the ...
6
votes
3answers
336 views

Combining noSQL and ORM in an MVC framework for a real-case application

I've been trying for some time to put some 'cool' things I've been reading about noSQL (couchDB, mongoDB, Redis...) in the past years into practical use. I'm quite used to writing apps with Django, ...
5
votes
2answers
859 views

How to apply a global filter in playframework

When using @before, it is only used in one class. How do I apply a global filter in playframework? So that one filter is used for all controller classes.
2
votes
1answer
548 views

Advanced customization of CRUD forms and controllers in Play

What I'm looking for is the ability to quickly (DRY!) generate forms for given models, but in a less-controlled way than using CRUD forms/models; for instance, by being able to use crud tags without ...
4
votes
3answers
604 views

How to debug “Found two representations of same collection”?

I have found several questions about this, but none with a complete explaintation of the problem, and how to debug it - the answers are all anecdotal. The problem is that in a Play 1.2.4 JPA test, ...
3
votes
3answers
238 views

How does an entity get an ID before a transaction is committed in JPA/Play?

See this question. It turns out that even without committing the transaction manually, before the TX is committed, the person has an ID after calling the save() method. Isn't the database ...
19
votes
5answers
9k 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, ...
29
votes
7answers
8k 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 ...
9
votes
3answers
1k 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 ...
23
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 ...
16
votes
3answers
1k 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 ...
8
votes
1answer
872 views

Does Play Framework support “snippets”?

If i want to have a common piece of UI across multiple pages, such as a menu, what is the recommended way to do this? It would contain both template code and a back-end controller (similar to ...
12
votes
1answer
762 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 ...
1
vote
3answers
2k views

Customizing JSON serialization in Play

I'm using renderJSON(Object) to return some objects as JSON values, and it's working fine except for one field. Is there an easy way to add in that one field without having to manually create the ...
7
votes
1answer
947 views

how can I specify a local jar file as a dependency in play! framework

I have a jar file copied in the lib directory I'd like to run "play deps --sync" without this jar being deleted.. I've already looked at depency file documentation but couldn't figure out how to do ...
4
votes
2answers
259 views

Recommended way to run single server scheduled play! jobs on heroku?

Is there a way to get a scheduled job to run on a single server? We have an email sending job that I don't want running twice simultaneously. Is this what heroku workers are for? I am currently under ...
2
votes
2answers
194 views

“ChoiceField” (or: a better JPA Enum) in Play?

I'm very much used to the Django 'choices' option for a model field: GENDER_CHOICES = ( ('M', 'Male'), ('F', 'Female'), ) gender = models.CharField(max_length=1, choices=GENDER_CHOICES) ...
2
votes
1answer
621 views

Authentication in Play! and RestEasy

I have a small application written in Play! which allows user registration and adding some content for registered users which other registered users can view. I'd like to add some REST API to my ...
1
vote
1answer
420 views

MongoDB schema design - finding the last X comments across all blog posts filtered by user

I am trying to reproduce the classic blog schema of one Post to many Comments using Morphia and the Play Framework. My schema in Mongo is: { "_id" : ObjectId("4d941c960c68c4e20d6a9abf"), ...
0
votes
1answer
271 views

Https redirect and login cookies on Heroku with Play Framework

I have a Play! framework Heroku project that has three deployments. One for running my dev machine, one for beta on Heroku, and one for production on Heroku. Their http and https urls are as ...
3
votes
2answers
414 views

How can I commit a Play! JPA transaction manually?

Usually, Play! commits the transaction after a request completes successfully. What is the correct way to commit a transaction manually in Play? void addPerson() { Person p = new Person("John", ...
3
votes
1answer
871 views

How can I store enums with fixed values in play

I'm trying to convert a grails-project to the playframework. In Grails you can define an id so the the id will be stored in the database (see Enhanced Enum Support in the release notes). I saw a ...
2
votes
2answers
560 views

How to get a DateTime input in a Play! CRUD form?

By default a java.util.Date field is represented in a CRUD form as a simple "DATE" input. public class DatedModel extends Model { public Date creationDate; in the CRUD admin I see: ...
2
votes
3answers
615 views

Multiple file upload in playframework

I'm having some problems with getting multiple file upload to work. When I select x files, it goes through successfully, but the first file is being uploaded x times, and the others are not being ...
1
vote
1answer
297 views

Java out of memory errors on large WSDLs (play framework)

We've got a problem when trying to generate and use a really large proxy file (For the record, it's from a MSCRM Dynamics WSDL). Before I get to the issue: we already have this working in a stand ...
1
vote
2answers
379 views

Simple example of JQuery Address to manage application state

I'm using the jQuery Address library to re-write my URL depending on what the user is doing in the page. The intention is to allow users to bookmark pages and come back later. The page never refreshes ...
1
vote
2answers
821 views

JPA column order in Play! framework [closed]

Possible Duplicate: Wrong ordering in generated table in jpa Im using Play! framework, and i have this in my model: @Entity(name="Dialer") public class Dialer extends Model { ...
0
votes
0answers
46 views

fatal error on java in playframework production mode [closed]

Possible Duplicate: Play Framework application crashes on Linux I deployed my application to a linux ubuntu server. It works in Development mode. But it doesn't work in production mode. I ...
107
votes
14answers
15k 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 ...
62
votes
6answers
14k 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 ...
37
votes
7answers
9k 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
10
votes
3answers
2k views

How does Play!'s Comet support work?

I saw the Akka module's description says that Play has great Comet support, but I've never used Comet before and I can't find any mention of it in Play's documentation. How does it work in Play? I ...
8
votes
2answers
725 views

How to integrate the Scala Squeryl ORB with play 2.0 framework?

I am trying to use Squeryl ORB with play 2.0 framework, but when calling DB.getConnection() during initialization I get: BadPath: path parameter: Invalid path ' - could not find datasource for ...
13
votes
1answer
767 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
6
votes
4answers
739 views

Use Map as property of model in Play

I'm trying to use a Map as a type for one of my models properties. Let's take these two classes for example: @Entity public class Foo extends Model { @OneToMany(mappedBy = "foo", cascade = ...
19
votes
3answers
1k 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 ...
15
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 ...
9
votes
2answers
2k views

persist Joda-time's DateTime via JPA

I'm using Jodatime in my Play app, but currently having to do a bunch of converting back and forth from/to java.util.Date and java.sql.Time. Since jodatime is included in the Play distribution, I'm ...
8
votes
5answers
2k views

How to make the debugging in playframework in IntelliJ Idea

Here we have a link http://www.playframework.org/documentation/1.0.1/ide about how to configure playframework to be working with different IDEs. There they say a couple of words about debugging, ...
5
votes
4answers
1k views

Error: detached entity passed to persist - try to persist complex data (Play-Framework)

I have a problem with persisting data via play-framework. Maybe it's not possible to achive that result, but it would be really nice if it would work. Simple: I have a complex Model (Shop with ...
2
votes
2answers
672 views

advantages of play framework for people coming from php / ruby / python

One of the strongest selling points of play framework is it's development cycle, just fix the code, go back to your browse, hit reload, and go one, all without the write, compile, deploy, hassle ...
2
votes
1answer
263 views

XForwardedSupport for https play! support on Heroku failing

I am deploying an app on Heroku and trying to determine whether the request coming in is secure (request.secure). This is initially returning false on heroku because nginx handles the SSL work and ...
2
votes
1answer
3k views

How to use play! framework to develop webservice?

How do I use play to develop webservice? I cannot find any documents in the official site.

1 2 3 4 5 9