Skip to content

bblfish/Play20

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Play Framework - The High Velocity Web Framework

The Play Framework combines productivity and performance making it easy to build scalable web applications with Java and Scala. Play is developer friendly with a "just hit refresh" workflow and built-in testing support. With Play, applications scale predictably due to a stateless and non-blocking architecture. By being RESTful by default, including assets compilers, JSON & WebSocket support, Play is a perfect fit for modern web & mobile applications.

Learn More

TLS differences

This branch differs from the main play branch in that it supports TLS client authentication as well as server authentication. The RequestHeader trait has a cert method that allows you to request a client certificate asynchronously - the client will be asked for his certificate if he has one.

   def certs(required:Boolean): Future[Seq[Certificate]]

Certificates that are signed by CAs in the trust store can be requested, or by specifying the empty trust store any client certificate will be requested. This is useful for implementing protocols such as WebID, as is done by RWW-Play

  run  -Dhttps.port=8443 -Dhttps.trustStore=noCA

This API is still prone to change, see:

Installing

For your convenience the most recent builds that pass the test suites are uploaded here.

Running the sample applications

There are several samples applications included in the samples/ directory. For example, to run the included Scala Hello World application:

$ cd ~/workspace/play2.1/samples/scala/helloworld/
$ play run

The application will be available on port 9000.

Issues tracker

Report issues at https://github.com/playframework/Play20/issues.

Contributors

Check for all contributors at https://github.com/playframework/Play20/contributors.

Licence

This software is licensed under the Apache 2 license, quoted below.

Copyright 2013 Typesafe (http://www.typesafe.com).

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this project except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Packages

No packages published

Languages

  • Scala 53.6%
  • JavaScript 30.1%
  • Java 15.5%
  • Shell 0.4%
  • CSS 0.4%
  • SQL 0.0%