Play Framework

Play Framework
Developer(s) Lightbend, Zengularity and the community
Initial release 2007 (2007)
Stable release
2.6.15 / April 6, 2018 (2018-04-06)[1]
Repository Edit this at Wikidata
Written in Scala
Available in English
Type Web application framework
License Apache 2 License
Website playframework.com

Play Framework is an open-source web application framework, written in Scala and also usable from other programming languages that are compiled to Bytecode, e.g. Java, which follows the model–view–controller (MVC) architectural pattern. It aims to optimize developer productivity by using convention over configuration, hot code reloading and display of errors in the browser.[2]

Support for the Scala programming language has been available since version 1.1 of the framework.[3] In version 2.0, the framework core was rewritten in Scala. Build and deployment was migrated to SBT, and templates use Scala[4] instead of Apache Groovy.

History

Play was created by software developer Guillaume Bort, while working at Zengularity SA (formerly Zenexity).[5] Although the early releases are no longer available online, there is evidence of Play existing as far back as May 2007.[6] In 2007, pre-release versions of the project were available to download from Zenexity's website.[7]

Version history
VersionDateNotes
Old version, no longer supported: 1.0May 2008The first published code for 1.0 appeared on Launchpad.[8] This was followed by a full 1.0 release in October 2009.[9]
Old version, no longer supported: 1.1November 2010Released after a move from Launchpad to GitHub. It included a migration from Apache MINA to JBoss Netty, Scala support, native GlassFish container, an asynchronous web services library, OAuth support, HTTPS support and other features.[10]
Old version, no longer supported: 1.2April 2011It included dependency management with Apache Ivy, support for WebSocket, integrated database migration (reversion was not implemented[11]), a switch to the H2 database as the default development database and other features.[12]
Old version, no longer supported: 2.0March 13, 2012Sadek Drobi joined Guillaume Bort late 2011 to create Play 2.0[13] in conjunction with Typesafe Stack 2.0.[14]
Older version, yet still supported: 2.1February 6, 2013Upgraded to Scala 2.10 and introduced, among other new features, modularization, a new JSON API, filters and RequireJS support.[15]
Older version, yet still supported: 2.2September 20, 2013Upgraded support for SBT to 0.13, better support for buffering, built in support for gzip and new stage and dist tasks with support for native packaging on several platforms such as OS X (DMG), Linux (RPM, DEB), and Windows (MSI) as well as zip files.
Older version, yet still supported: 2.3May 30, 2014Introducing the Activator command, better tooling for static assets, support for Java 8 and Scala 2.11, better performance, Web Service enhancement and support to integrate Actors and Web Sockets.
Older version, yet still supported: 2.4May 26, 2015With Dependency injection out of the box, the possibility to embed Play inside other applications, improved Java 8 support, HikariCP as the default connection pool and better testing APIs.
Older version, yet still supported: 2.5March 29, 2016Switched from Iteratees to Akka Streams for all asynchronous IO and streaming, replaced custom functional types with Java 8 types (such as CompletionStage and Optional), introduced equivalent Java APIs for features that previously only existing in the Scala API, such as implementing filters and custom body parsers and with a 20% performance increase.
Current stable version: 2.6June 23, 2017Using Akka HTTP as the default server backend, experimental HTTP/2 support, Scala 2.12 support, no more global state under the hood, JSON Web Token format for cookies, improved security and configuration improvements.
Legend:
Old version
Older version, still supported
Latest version
Latest preview version
Future release

Motivation

Play is heavily inspired by ASP.NET MVC, Ruby on Rails and Django and is similar to this family of frameworks. Play web applications can be written in Scala or Java, in an environment that may be less Java Enterprise Edition-centric. Play uses no Java EE constraints. This can make Play simpler to develop compared to other Java-centric platforms.[16]

Although Play 1.x could also be packaged as WAR files to be distributed to standard Java EE application servers,[17] Play 2.x applications are now designed to be run using the built-in Akka HTTP or Netty web servers exclusively.

Major differences from Java frameworks

  • Stateless: Play 2 is fully RESTful – there is no Java EE session per connection.
  • Integrated unit testing: JUnit and Selenium support is included in the core.
  • API comes with most required elements built-in.
  • Asynchronous I/O: due to using Akka HTTP as its web server, Play can service long requests asynchronously rather than tying up HTTP threads doing business logic like Java EE frameworks that don't use the asynchronous support offered by Servlet 3.0.[18]
  • Modular architecture: like Ruby on Rails and Django, Play comes with the concept of modules.
  • Native Scala support: Play 2 uses Scala internally but also exposes both a Scala API, and a Java API that is deliberately slightly different to fit in with Java conventions, and Play is completely interoperable with Java.

Components

Play 2.5.x makes use of several popular Java libraries:

  • Akka-HTTP or Netty for the web server
  • Akka Streams for all asynchronous IO and streaming
  • No required ORM, but Anorm (Scala), Slick (Scala) and Ebean (Java) are included for database access
  • Twirl (Scala) as the template engine
  • Built-in hot-reloading
  • sbt as the build tool and for dependency management

The following functionality is present in the core:

  • a clean, RESTful framework
  • Secure: a module to enable simple user authentication
  • a validation framework based on annotations
  • JSON and XML parsers and marshallers
  • a persistence layer based on JPA
  • an embedded database for quick deployment/testing purposes
  • a full embedded testing framework
  • an automatic file uploads functionality
  • multi-environment configuration awareness
  • a modular architecture, which enables bringing new features in the core easily
  • OpenID and web services clients

Testing framework

Play provides integration with test frameworks for unit testing and functional testing for both Scala and Java applications. For Scala, integrations with Scalatest and Specs2 are provided out-of-the-box and, for Java, there is integration with JUnit 4. For both languages, there is also integration with Selenium (software). SBT is used to run the tests and also to generate reports. It is also possible to use code coverage tools by using sbt plugins such as scoverage or jacoco4sbt.

Usage

The mailing list for the project has over 14,000 subscribers.[19] It is used in various projects such as local governments, company intranets, mobile websites and Open Source projects.

As of October 2013, the Play Framework is the most popular Scala project on GitHub.[20] In July 2015, Play was the 3rd most popular Scala library in Github, based on 64,562 Libraries. 21.3% of the top Scala projects used Play as their framework of choice.[21]

Some notable public websites using Play:[22]

In December 2010, the first e-book for the Play framework was released.[25] This was subsequently also published in hard copy. In August 2011, a second book was released, covering more complex and modern features.[26]

In August 2011, Heroku announced native support for Play applications on its cloud computing platform.[27] This follows module-based support for Play 1.0 (but not Play 2.x) on Google App Engine, and documented support on Amazon Web Services.[28]

In July 2013, Jelastic published a tutorial showing support for Play 2 on its cloud computing platform.[29]

See also

Literature

  • Peter Hilton; Erik Bakker & Francisco Canedo (2013). Play for Scala. Manning. ISBN 9781617290794.
  • Andy Petrella (2013). Learning Play! Framework 2. Packt Publishing. ISBN 978-1-78216-012-0.
  • Nicolas Leroux; Sietse de Kaper (2014). Play for Java. Manning. ISBN 1617290904.
  • Julien Richard-Foy (2014). Play Framework Essentials. Packt Publishing. ISBN 1783982403.
  • Shiti Saxena (2015). Mastering Play Framework for Scala. Packt Publishing. ISBN 1783983809.
  • Alexander Reelsen; Giancarlo Inductivo (2015). Play Framework Cookbook (2nd ed.). Packt Publishing. ISBN 1783982403.

References

  1. Play Team (2017-05-27). "Play changelog".
  2. "Playing with Play Framework for Java - @codemonkeyism". Codemonkeyism.com. 22 March 2010. Retrieved 31 July 2018.
  3. "Play framework in practice - Devoxx09 - Devoxx". Web.archive.org. 13 October 2009. Retrieved 31 July 2018.
  4. "playframework/twirl". GitHub. Retrieved 31 July 2018.
  5. Bort, Guillaume. "guillaume bort – software designer". guillaume.bort.fr. Retrieved 31 July 2018.
  6. "Google Groups". groups.google.com. Retrieved 31 July 2018.
  7. "Play!". Web.archive.org. 29 October 2007. Retrieved 31 July 2018.
  8. "~play-developers/play/1.0 : revision 1". Bazaar.launchpad.net. Retrieved 31 July 2018.
  9. "Downloads". Playframework.org. Retrieved 31 July 2018.
  10. "releasenotes-1.1 - 1.1". Playframework.org. Retrieved 31 July 2018.
  11. "Modules". Playframework.org. Retrieved 31 July 2018.
  12. "releasenotes-1.2 - 1.2". Playframework.org. Retrieved 31 July 2018.
  13. "Philosophy - 2.0". Playframework.org. Retrieved 31 July 2018.
  14. "Introducing Typesafe Stack 2.0 - @lightbend". Blog.typesafe.com. Retrieved 31 July 2018.
  15. "Highlights - 2.1.0". Playframework.com. Retrieved 31 July 2018.
  16. Play! Framework Usability Archived 2011-07-13 at the Wayback Machine.
  17. "Thomas Heute's Blog: Play Framework on JBoss AS 7 -JBoss Developer". community.jboss.org. Retrieved 31 July 2018.
  18. "Play framework and async I/O". engineering.linkedin.com. Retrieved 31 July 2018.
  19. "Google Groups". groups.google.com. Retrieved 31 July 2018.
  20. "GitHub: Search stars>1". Retrieved 5 October 2013.
  21. "The Top 100 Scala Libraries in 2015 – Based on 64,562 GitHub Libraries>1". Retrieved 19 July 2015.
  22. "Testimonials". Playframework.org. Retrieved 31 July 2018.
  23. "Lightbend, Inc. - @lightbend". Lightbend.com. Retrieved 31 July 2018.
  24. "guardian/frontend". GitHub. Retrieved 31 July 2018.
  25. "Introducing the Play Framework". The-play-book.co.uk. Retrieved 31 July 2018.
  26. "Play Framework Cookbook - PACKT Books". Packtpub.com. Retrieved 31 July 2018.
  27. "Play! on Heroku". Blog.heroku.com. Retrieved 31 July 2018.
  28. "Play-ing with Amazon RDS". Ibm.com. 19 July 2011. Retrieved 31 July 2018.
  29. "Play 2 Web Application Deployment Tutorial". Blog.jelastic.com. 2 July 2013. Retrieved 31 July 2018.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.