Download phone book sample Free Java Code

Description

The example application from the book Play Framework Starter Guide.

Source Files

The download file phone-book-sample-master.zip has the following entries.


.gitignore//from  ww w  .j a  v a 2  s. c o m
1-designing-a-play-application/play-starter-java/app/Global.java
1-designing-a-play-application/play-starter-java/app/controllers/Application.java
1-designing-a-play-application/play-starter-java/app/controllers/Entries.java
1-designing-a-play-application/play-starter-java/app/models/Entries.java
1-designing-a-play-application/play-starter-java/app/models/Entry.java
1-designing-a-play-application/play-starter-java/app/views/index.scala.html
1-designing-a-play-application/play-starter-java/app/views/list.scala.html
1-designing-a-play-application/play-starter-java/app/views/main.scala.html
1-designing-a-play-application/play-starter-java/conf/application.conf
1-designing-a-play-application/play-starter-java/conf/routes
1-designing-a-play-application/play-starter-java/project/Build.scala
1-designing-a-play-application/play-starter-java/project/build.properties
1-designing-a-play-application/play-starter-java/project/plugins.sbt
1-designing-a-play-application/play-starter-java/public/bootstrap/css/bootstrap-responsive.css
1-designing-a-play-application/play-starter-java/public/bootstrap/css/bootstrap-responsive.min.css
1-designing-a-play-application/play-starter-java/public/bootstrap/css/bootstrap.css
1-designing-a-play-application/play-starter-java/public/bootstrap/css/bootstrap.min.css
1-designing-a-play-application/play-starter-java/public/bootstrap/img/glyphicons-halflings-white.png
1-designing-a-play-application/play-starter-java/public/bootstrap/img/glyphicons-halflings.png
1-designing-a-play-application/play-starter-java/public/bootstrap/js/bootstrap.js
1-designing-a-play-application/play-starter-java/public/bootstrap/js/bootstrap.min.js
1-designing-a-play-application/play-starter-java/public/images/favicon.png
1-designing-a-play-application/play-starter-java/public/javascripts/jquery-1.9.0.min.js
1-designing-a-play-application/play-starter-java/public/stylesheets/main.css
1-designing-a-play-application/play-starter-java/test/ApplicationTest.java
1-designing-a-play-application/play-starter-java/test/IntegrationTest.java
1-designing-a-play-application/play-starter-scala/app/Global.scala
1-designing-a-play-application/play-starter-scala/app/controllers/Application.scala
1-designing-a-play-application/play-starter-scala/app/controllers/Entries.scala
1-designing-a-play-application/play-starter-scala/app/models/Entries.scala
1-designing-a-play-application/play-starter-scala/app/views/index.scala.html
1-designing-a-play-application/play-starter-scala/app/views/list.scala.html
1-designing-a-play-application/play-starter-scala/app/views/main.scala.html
1-designing-a-play-application/play-starter-scala/conf/application.conf
1-designing-a-play-application/play-starter-scala/conf/routes
1-designing-a-play-application/play-starter-scala/project/Build.scala
1-designing-a-play-application/play-starter-scala/project/build.properties
1-designing-a-play-application/play-starter-scala/project/plugins.sbt
1-designing-a-play-application/play-starter-scala/public/bootstrap/css/bootstrap-responsive.css
1-designing-a-play-application/play-starter-scala/public/bootstrap/css/bootstrap-responsive.min.css
1-designing-a-play-application/play-starter-scala/public/bootstrap/css/bootstrap.css
1-designing-a-play-application/play-starter-scala/public/bootstrap/css/bootstrap.min.css
1-designing-a-play-application/play-starter-scala/public/bootstrap/img/glyphicons-halflings-white.png
1-designing-a-play-application/play-starter-scala/public/bootstrap/img/glyphicons-halflings.png
1-designing-a-play-application/play-starter-scala/public/bootstrap/js/bootstrap.js
1-designing-a-play-application/play-starter-scala/public/bootstrap/js/bootstrap.min.js
1-designing-a-play-application/play-starter-scala/public/images/favicon.png
1-designing-a-play-application/play-starter-scala/public/javascripts/jquery-1.9.0.min.js
1-designing-a-play-application/play-starter-scala/public/stylesheets/main.css
1-designing-a-play-application/play-starter-scala/test/ApplicationSpec.scala
1-designing-a-play-application/play-starter-scala/test/IntegrationSpec.scala
2-defining-a-form/play-starter-java/app/Global.java
2-defining-a-form/play-starter-java/app/controllers/Application.java
2-defining-a-form/play-starter-java/app/controllers/Entries.java
2-defining-a-form/play-starter-java/app/models/Entries.java
2-defining-a-form/play-starter-java/app/models/Entry.java
2-defining-a-form/play-starter-java/app/views/edit.scala.html
2-defining-a-form/play-starter-java/app/views/index.scala.html
2-defining-a-form/play-starter-java/app/views/list.scala.html
2-defining-a-form/play-starter-java/app/views/main.scala.html
2-defining-a-form/play-starter-java/conf/application.conf
2-defining-a-form/play-starter-java/conf/routes
2-defining-a-form/play-starter-java/project/Build.scala
2-defining-a-form/play-starter-java/project/build.properties
2-defining-a-form/play-starter-java/project/plugins.sbt
2-defining-a-form/play-starter-java/public/bootstrap/css/bootstrap-responsive.css
2-defining-a-form/play-starter-java/public/bootstrap/css/bootstrap-responsive.min.css
2-defining-a-form/play-starter-java/public/bootstrap/css/bootstrap.css
2-defining-a-form/play-starter-java/public/bootstrap/css/bootstrap.min.css
2-defining-a-form/play-starter-java/public/bootstrap/img/glyphicons-halflings-white.png
2-defining-a-form/play-starter-java/public/bootstrap/img/glyphicons-halflings.png
2-defining-a-form/play-starter-java/public/bootstrap/js/bootstrap.js
2-defining-a-form/play-starter-java/public/bootstrap/js/bootstrap.min.js
2-defining-a-form/play-starter-java/public/images/favicon.png
2-defining-a-form/play-starter-java/public/javascripts/jquery-1.9.0.min.js
2-defining-a-form/play-starter-java/public/stylesheets/main.css
2-defining-a-form/play-starter-java/test/ApplicationTest.java
2-defining-a-form/play-starter-java/test/IntegrationTest.java
2-defining-a-form/play-starter-scala/app/Global.scala
2-defining-a-form/play-starter-scala/app/controllers/Application.scala
2-defining-a-form/play-starter-scala/app/controllers/Entries.scala
2-defining-a-form/play-starter-scala/app/models/Entries.scala
2-defining-a-form/play-starter-scala/app/views/edit.scala.html
2-defining-a-form/play-starter-scala/app/views/index.scala.html
2-defining-a-form/play-starter-scala/app/views/list.scala.html
2-defining-a-form/play-starter-scala/app/views/main.scala.html
2-defining-a-form/play-starter-scala/conf/application.conf
2-defining-a-form/play-starter-scala/conf/routes
2-defining-a-form/play-starter-scala/project/Build.scala
2-defining-a-form/play-starter-scala/project/build.properties
2-defining-a-form/play-starter-scala/project/plugins.sbt
2-defining-a-form/play-starter-scala/public/bootstrap/css/bootstrap-responsive.css
2-defining-a-form/play-starter-scala/public/bootstrap/css/bootstrap-responsive.min.css
2-defining-a-form/play-starter-scala/public/bootstrap/css/bootstrap.css
2-defining-a-form/play-starter-scala/public/bootstrap/css/bootstrap.min.css
2-defining-a-form/play-starter-scala/public/bootstrap/img/glyphicons-halflings-white.png
2-defining-a-form/play-starter-scala/public/bootstrap/img/glyphicons-halflings.png
2-defining-a-form/play-starter-scala/public/bootstrap/js/bootstrap.js
2-defining-a-form/play-starter-scala/public/bootstrap/js/bootstrap.min.js
2-defining-a-form/play-starter-scala/public/images/favicon.png
2-defining-a-form/play-starter-scala/public/javascripts/jquery-1.9.0.min.js
2-defining-a-form/play-starter-scala/public/stylesheets/main.css
2-defining-a-form/play-starter-scala/test/ApplicationSpec.scala
2-defining-a-form/play-starter-scala/test/IntegrationSpec.scala
3-validating-user-input/play-starter-java/app/Global.java
3-validating-user-input/play-starter-java/app/controllers/Application.java
3-validating-user-input/play-starter-java/app/controllers/Entries.java
3-validating-user-input/play-starter-java/app/models/Entries.java
3-validating-user-input/play-starter-java/app/models/Entry.java
3-validating-user-input/play-starter-java/app/views/edit.scala.html
3-validating-user-input/play-starter-java/app/views/index.scala.html
3-validating-user-input/play-starter-java/app/views/list.scala.html
3-validating-user-input/play-starter-java/app/views/main.scala.html
3-validating-user-input/play-starter-java/conf/application.conf
3-validating-user-input/play-starter-java/conf/routes
3-validating-user-input/play-starter-java/project/Build.scala
3-validating-user-input/play-starter-java/project/build.properties
3-validating-user-input/play-starter-java/project/plugins.sbt
3-validating-user-input/play-starter-java/public/bootstrap/css/bootstrap-responsive.css
3-validating-user-input/play-starter-java/public/bootstrap/css/bootstrap-responsive.min.css
3-validating-user-input/play-starter-java/public/bootstrap/css/bootstrap.css
3-validating-user-input/play-starter-java/public/bootstrap/css/bootstrap.min.css
3-validating-user-input/play-starter-java/public/bootstrap/img/glyphicons-halflings-white.png
3-validating-user-input/play-starter-java/public/bootstrap/img/glyphicons-halflings.png
3-validating-user-input/play-starter-java/public/bootstrap/js/bootstrap.js
3-validating-user-input/play-starter-java/public/bootstrap/js/bootstrap.min.js
3-validating-user-input/play-starter-java/public/images/favicon.png
3-validating-user-input/play-starter-java/public/javascripts/jquery-1.9.0.min.js
3-validating-user-input/play-starter-java/public/stylesheets/main.css
3-validating-user-input/play-starter-java/test/ApplicationTest.java
3-validating-user-input/play-starter-java/test/IntegrationTest.java
3-validating-user-input/play-starter-scala/app/Global.scala
3-validating-user-input/play-starter-scala/app/controllers/Application.scala
3-validating-user-input/play-starter-scala/app/controllers/Entries.scala
3-validating-user-input/play-starter-scala/app/models/Entries.scala
3-validating-user-input/play-starter-scala/app/views/edit.scala.html
3-validating-user-input/play-starter-scala/app/views/index.scala.html
3-validating-user-input/play-starter-scala/app/views/list.scala.html
3-validating-user-input/play-starter-scala/app/views/main.scala.html
3-validating-user-input/play-starter-scala/conf/application.conf
3-validating-user-input/play-starter-scala/conf/routes
3-validating-user-input/play-starter-scala/project/Build.scala
3-validating-user-input/play-starter-scala/project/build.properties
3-validating-user-input/play-starter-scala/project/plugins.sbt
3-validating-user-input/play-starter-scala/public/bootstrap/css/bootstrap-responsive.css
3-validating-user-input/play-starter-scala/public/bootstrap/css/bootstrap-responsive.min.css
3-validating-user-input/play-starter-scala/public/bootstrap/css/bootstrap.css
3-validating-user-input/play-starter-scala/public/bootstrap/css/bootstrap.min.css
3-validating-user-input/play-starter-scala/public/bootstrap/img/glyphicons-halflings-white.png
3-validating-user-input/play-starter-scala/public/bootstrap/img/glyphicons-halflings.png
3-validating-user-input/play-starter-scala/public/bootstrap/js/bootstrap.js
3-validating-user-input/play-starter-scala/public/bootstrap/js/bootstrap.min.js
3-validating-user-input/play-starter-scala/public/images/favicon.png
3-validating-user-input/play-starter-scala/public/javascripts/jquery-1.9.0.min.js
3-validating-user-input/play-starter-scala/public/stylesheets/main.css
3-validating-user-input/play-starter-scala/test/ApplicationSpec.scala
3-validating-user-input/play-starter-scala/test/IntegrationSpec.scala
4-using-form-template-helpers/play-starter-java/app/Global.java
4-using-form-template-helpers/play-starter-java/app/controllers/Application.java
4-using-form-template-helpers/play-starter-java/app/controllers/Entries.java
4-using-form-template-helpers/play-starter-java/app/models/Entries.java
4-using-form-template-helpers/play-starter-java/app/models/Entry.java
4-using-form-template-helpers/play-starter-java/app/views/edit.scala.html
4-using-form-template-helpers/play-starter-java/app/views/index.scala.html
4-using-form-template-helpers/play-starter-java/app/views/list.scala.html
4-using-form-template-helpers/play-starter-java/app/views/main.scala.html
4-using-form-template-helpers/play-starter-java/conf/application.conf
4-using-form-template-helpers/play-starter-java/conf/routes
4-using-form-template-helpers/play-starter-java/project/Build.scala
4-using-form-template-helpers/play-starter-java/project/build.properties
4-using-form-template-helpers/play-starter-java/project/plugins.sbt
4-using-form-template-helpers/play-starter-java/public/bootstrap/css/bootstrap-responsive.css
4-using-form-template-helpers/play-starter-java/public/bootstrap/css/bootstrap-responsive.min.css
4-using-form-template-helpers/play-starter-java/public/bootstrap/css/bootstrap.css
4-using-form-template-helpers/play-starter-java/public/bootstrap/css/bootstrap.min.css
4-using-form-template-helpers/play-starter-java/public/bootstrap/img/glyphicons-halflings-white.png
4-using-form-template-helpers/play-starter-java/public/bootstrap/img/glyphicons-halflings.png
4-using-form-template-helpers/play-starter-java/public/bootstrap/js/bootstrap.js
4-using-form-template-helpers/play-starter-java/public/bootstrap/js/bootstrap.min.js
4-using-form-template-helpers/play-starter-java/public/images/favicon.png
4-using-form-template-helpers/play-starter-java/public/javascripts/jquery-1.9.0.min.js
4-using-form-template-helpers/play-starter-java/public/stylesheets/main.css
4-using-form-template-helpers/play-starter-java/test/ApplicationTest.java
4-using-form-template-helpers/play-starter-java/test/IntegrationTest.java
4-using-form-template-helpers/play-starter-scala/app/Global.scala
4-using-form-template-helpers/play-starter-scala/app/controllers/Application.scala
4-using-form-template-helpers/play-starter-scala/app/controllers/Entries.scala
4-using-form-template-helpers/play-starter-scala/app/models/Entries.scala
4-using-form-template-helpers/play-starter-scala/app/views/edit.scala.html
4-using-form-template-helpers/play-starter-scala/app/views/index.scala.html
4-using-form-template-helpers/play-starter-scala/app/views/list.scala.html
4-using-form-template-helpers/play-starter-scala/app/views/main.scala.html
4-using-form-template-helpers/play-starter-scala/conf/application.conf
4-using-form-template-helpers/play-starter-scala/conf/routes
4-using-form-template-helpers/play-starter-scala/project/Build.scala
4-using-form-template-helpers/play-starter-scala/project/build.properties
4-using-form-template-helpers/play-starter-scala/project/plugins.sbt
4-using-form-template-helpers/play-starter-scala/public/bootstrap/css/bootstrap-responsive.css
4-using-form-template-helpers/play-starter-scala/public/bootstrap/css/bootstrap-responsive.min.css
4-using-form-template-helpers/play-starter-scala/public/bootstrap/css/bootstrap.css
4-using-form-template-helpers/play-starter-scala/public/bootstrap/css/bootstrap.min.css
4-using-form-template-helpers/play-starter-scala/public/bootstrap/img/glyphicons-halflings-white.png
4-using-form-template-helpers/play-starter-scala/public/bootstrap/img/glyphicons-halflings.png
4-using-form-template-helpers/play-starter-scala/public/bootstrap/js/bootstrap.js
4-using-form-template-helpers/play-starter-scala/public/bootstrap/js/bootstrap.min.js
4-using-form-template-helpers/play-starter-scala/public/images/favicon.png
4-using-form-template-helpers/play-starter-scala/public/javascripts/jquery-1.9.0.min.js
4-using-form-template-helpers/play-starter-scala/public/stylesheets/main.css
4-using-form-template-helpers/play-starter-scala/test/ApplicationSpec.scala
4-using-form-template-helpers/play-starter-scala/test/IntegrationSpec.scala
5-connecting-to-a-database/play-starter-java-ebean/app/Global.java
5-connecting-to-a-database/play-starter-java-ebean/app/controllers/Application.java
5-connecting-to-a-database/play-starter-java-ebean/app/controllers/Entries.java
5-connecting-to-a-database/play-starter-java-ebean/app/models/Entries.java
5-connecting-to-a-database/play-starter-java-ebean/app/models/Entry.java
5-connecting-to-a-database/play-starter-java-ebean/app/views/edit.scala.html
5-connecting-to-a-database/play-starter-java-ebean/app/views/index.scala.html
5-connecting-to-a-database/play-starter-java-ebean/app/views/list.scala.html
5-connecting-to-a-database/play-starter-java-ebean/app/views/main.scala.html
5-connecting-to-a-database/play-starter-java-ebean/conf/application.conf
5-connecting-to-a-database/play-starter-java-ebean/conf/evolutions/default/1.sql
5-connecting-to-a-database/play-starter-java-ebean/conf/routes
5-connecting-to-a-database/play-starter-java-ebean/project/Build.scala
5-connecting-to-a-database/play-starter-java-ebean/project/build.properties
5-connecting-to-a-database/play-starter-java-ebean/project/plugins.sbt
5-connecting-to-a-database/play-starter-java-ebean/public/bootstrap/css/bootstrap-responsive.css
5-connecting-to-a-database/play-starter-java-ebean/public/bootstrap/css/bootstrap-responsive.min.css
5-connecting-to-a-database/play-starter-java-ebean/public/bootstrap/css/bootstrap.css
5-connecting-to-a-database/play-starter-java-ebean/public/bootstrap/css/bootstrap.min.css
5-connecting-to-a-database/play-starter-java-ebean/public/bootstrap/img/glyphicons-halflings-white.png
5-connecting-to-a-database/play-starter-java-ebean/public/bootstrap/img/glyphicons-halflings.png
5-connecting-to-a-database/play-starter-java-ebean/public/bootstrap/js/bootstrap.js
5-connecting-to-a-database/play-starter-java-ebean/public/bootstrap/js/bootstrap.min.js
5-connecting-to-a-database/play-starter-java-ebean/public/images/favicon.png
5-connecting-to-a-database/play-starter-java-ebean/public/javascripts/jquery-1.9.0.min.js
5-connecting-to-a-database/play-starter-java-ebean/public/stylesheets/main.css
5-connecting-to-a-database/play-starter-java-ebean/test/ApplicationTest.java
5-connecting-to-a-database/play-starter-java-ebean/test/IntegrationTest.java
5-connecting-to-a-database/play-starter-scala-anorm/app/Global.scala
5-connecting-to-a-database/play-starter-scala-anorm/app/controllers/Application.scala
5-connecting-to-a-database/play-starter-scala-anorm/app/controllers/Entries.scala
5-connecting-to-a-database/play-starter-scala-anorm/app/models/Entries.scala
5-connecting-to-a-database/play-starter-scala-anorm/app/views/edit.scala.html
5-connecting-to-a-database/play-starter-scala-anorm/app/views/index.scala.html
5-connecting-to-a-database/play-starter-scala-anorm/app/views/list.scala.html
5-connecting-to-a-database/play-starter-scala-anorm/app/views/main.scala.html
5-connecting-to-a-database/play-starter-scala-anorm/conf/application.conf
5-connecting-to-a-database/play-starter-scala-anorm/conf/evolutions/default/1.sql
5-connecting-to-a-database/play-starter-scala-anorm/conf/routes
5-connecting-to-a-database/play-starter-scala-anorm/project/Build.scala
5-connecting-to-a-database/play-starter-scala-anorm/project/build.properties
5-connecting-to-a-database/play-starter-scala-anorm/project/plugins.sbt
5-connecting-to-a-database/play-starter-scala-anorm/public/bootstrap/css/bootstrap-responsive.css
5-connecting-to-a-database/play-starter-scala-anorm/public/bootstrap/css/bootstrap-responsive.min.css
5-connecting-to-a-database/play-starter-scala-anorm/public/bootstrap/css/bootstrap.css
5-connecting-to-a-database/play-starter-scala-anorm/public/bootstrap/css/bootstrap.min.css
5-connecting-to-a-database/play-starter-scala-anorm/public/bootstrap/img/glyphicons-halflings-white.png
5-connecting-to-a-database/play-starter-scala-anorm/public/bootstrap/img/glyphicons-halflings.png
5-connecting-to-a-database/play-starter-scala-anorm/public/bootstrap/js/bootstrap.js
5-connecting-to-a-database/play-starter-scala-anorm/public/bootstrap/js/bootstrap.min.js
5-connecting-to-a-database/play-starter-scala-anorm/public/images/favicon.png
5-connecting-to-a-database/play-starter-scala-anorm/public/javascripts/jquery-1.9.0.min.js
5-connecting-to-a-database/play-starter-scala-anorm/public/stylesheets/main.css
5-connecting-to-a-database/play-starter-scala-anorm/test/ApplicationSpec.scala
5-connecting-to-a-database/play-starter-scala-anorm/test/IntegrationSpec.scala
5-connecting-to-a-database/play-starter-scala-slick/app/Global.scala
5-connecting-to-a-database/play-starter-scala-slick/app/controllers/Application.scala
5-connecting-to-a-database/play-starter-scala-slick/app/controllers/Entries.scala
5-connecting-to-a-database/play-starter-scala-slick/app/models/DAL.scala
5-connecting-to-a-database/play-starter-scala-slick/app/models/Entries.scala
5-connecting-to-a-database/play-starter-scala-slick/app/views/edit.scala.html
5-connecting-to-a-database/play-starter-scala-slick/app/views/index.scala.html
5-connecting-to-a-database/play-starter-scala-slick/app/views/list.scala.html
5-connecting-to-a-database/play-starter-scala-slick/app/views/main.scala.html
5-connecting-to-a-database/play-starter-scala-slick/conf/application.conf
5-connecting-to-a-database/play-starter-scala-slick/conf/routes
5-connecting-to-a-database/play-starter-scala-slick/project/Build.scala
5-connecting-to-a-database/play-starter-scala-slick/project/build.properties
5-connecting-to-a-database/play-starter-scala-slick/project/plugins.sbt
5-connecting-to-a-database/play-starter-scala-slick/public/bootstrap/css/bootstrap-responsive.css
5-connecting-to-a-database/play-starter-scala-slick/public/bootstrap/css/bootstrap-responsive.min.css
5-connecting-to-a-database/play-starter-scala-slick/public/bootstrap/css/bootstrap.css
5-connecting-to-a-database/play-starter-scala-slick/public/bootstrap/css/bootstrap.min.css
5-connecting-to-a-database/play-starter-scala-slick/public/bootstrap/img/glyphicons-halflings-white.png
5-connecting-to-a-database/play-starter-scala-slick/public/bootstrap/img/glyphicons-halflings.png
5-connecting-to-a-database/play-starter-scala-slick/public/bootstrap/js/bootstrap.js
5-connecting-to-a-database/play-starter-scala-slick/public/bootstrap/js/bootstrap.min.js
5-connecting-to-a-database/play-starter-scala-slick/public/images/favicon.png
5-connecting-to-a-database/play-starter-scala-slick/public/javascripts/jquery-1.9.0.min.js
5-connecting-to-a-database/play-starter-scala-slick/public/stylesheets/main.css
5-connecting-to-a-database/play-starter-scala-slick/test/ApplicationSpec.scala
5-connecting-to-a-database/play-starter-scala-slick/test/IntegrationSpec.scala
README.md

Download

Click the following link to download phone-book-sample-master.zip.

phone-book-sample-master.zip




















Home »
  Javascript Free Code Download »
    Development »




Algorithm
API
Asp.Net
Azure
CoffeeScript
Collection
Component
Data Structure
Date
Demo
Django
Drupal
Example
Filter
GeoLocation
Markdown
MVC
Parse
Php
Plugin
Prototype
Python
Sample
SDK
Snippet
Stream
Titanium
Utility
Web
WebApplication
XML
YAML
ZooKeeper