I\'m writing a TodoList application using Playframework. I want to update a task but don\'t know how to update with JPA (I\'m just moving from PHP with Zend Framework and don\'t familiar with Hibernat
I have a simple model 开发者_Python百科class in my Play! application: @Entity public class User extends Model {
We\'re currently doing a project that accepts user-provided html and has our own injected into it.This perfectly matches Play\'s abilities.However, I am at a loss as to how to use dynamic content as a
I am following a tutorial mention on code.google, but my example fails giving the following trace : java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
I have the following Play Framework entity (using Morphia for persistence) as part of a generic blogging app:
I\'m studying Play!. I\'m using the HSQLDB embedded inside the framewok.It works fine for my needs, but I need to connect to it using a SQL client.
I can see source code in production versio开发者_Go百科n of play framework based applicaton? Do I need it?
Currently the play framework documentation says how to setup dependencies for the whole project without dividing them between running modes. The previous method allowed this by putting something l开发
I added https.port to my application.conf to gain HTTPS support. The problem is one of my routes require to be accessible through HTTP because the client is not supporting HTTPS. Is it somehow possibl
I\'m using Play\'s CRUD module to create a simple set of admin screens.One of my models is User and I want to enforce a unique constraint on the email field.