background preloader

Play! framework

Facebook Twitter

Working with JSON in Play 2.1 | 42 Engineering. James Ward | Typesafe | Java | Scala | Play Framework | Akka | Open Source | Linux. Schaloner/deadbolt-2. The reactive manifesto. Play! NoSQL (Building NoSQL applications with Play framework) Accessing Databases with Play! Framework Play Framework is a high velocity web framework for Java and Scala. It’s built to make application development faster and glitch free.

Play! Provides a plugin for managing JDBC connection pools. …and NoSQL? However, integrating Play! There have been efforts like PlayORM. JPA to your rescue There is a bad news. Setting up a Play! Download Play! 1. 2. 1.export PATH=$PATH:/home/impadmin/play-2.1.1 3. Create your project 1. 2. 3. 4. 5. execute “run” command from Play! At this stage, dependency Jars specified in Build.scala and other Play dependencies are downloaded and copied to classpath. 6. 7. Play! Add Kundera dependencies to project/Build.scala You need to add Kundera dependency jars (which, by the way are available in a maven repository) to your project. 01.import sbt 02.import Keys 03.import play.Project 05.object ApplicationBuild extends Build { 06. val appName = "play-jpa-kundera" 07. val appVersion = "1.0-SNAPSHOT" 09. val appDependencies = Seq( 10. 07.