February 2018
Intermediate to advanced
552 pages
13h 46m
English
In this section, we will use the same previous Play Framework/Scala based HelloWorld example and extend it with Akka Toolkit. I'll use the content from the previous example to demonstrate this.
Perform the following steps:
routes:
# Routes # This file defines all application routes (Higher priority routes first) # ~~~~ # HelloWorldController without using Play DI GET /helloWorldNoDI controllers.HelloWorldNoDIController.helloWorldNoDI # HelloWorldController with Play DI GET /helloWorldDI controllers.HelloWorldDIController.helloWorld ...