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).
My problem is about putting and getting variables into/from the play scope. It\'s not that it doesn\'t work at all, but it sometimes does and other times it doesn\'t, which is really odd. For example
I am developing a pretty simple application with Play, which contains a jQuery UI autocomplete. This autocomplete sends an ajax request to the server and brings back id/values (using the code snippet
I\'m trying to implement a quiz application. The application loads the questions with ajax one by one. When a user clicks the \'to next question\' button his/her answer is saved in cache. But when I d
I\'ve started using Play! for an application which we are migrating from Wicket in my organization. As per our policy, we need to keep all tests up and running via Jenkins and I was able to antify th
I don\'t seem to be able to resolve the following scenario where no routes are found. Got my route file with the following entry:
I\'m currently working on a Play! project that involves graphing JSON data similar to the following using the Google Visualization API:
I try to run this code but I get a NULL exception. Java Code : public static void updateData(List<Users> users){
I have a table called ETL_TABLES which resides on the public schema. In my application.conf I have the follow开发者_StackOverflow社区ing line:
I want to separated fields in my model: action开发者_JAVA百科Date and actionTime. Can I use the datatypes sql.Date and sql.Time for this? Or should I use util.Date for both?