February 2018
Intermediate to advanced
552 pages
13h 46m
English
In this section, we will develop a Play Framework Scala and SBT-based Fileupload web application, which is useful to develop our final WF Reactive Systems in the coming chapters.
We will follow these steps to develop and experiment with this example:
Project name: play-scala-fileupload-app
build.sbt:
name := "play-scala-fileupload-example"
version := "1.0.0"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.12.2"
libraryDependencies += guice
libraryDependencies += ws
Read now
Unlock full access