February 2018
Intermediate to advanced
552 pages
13h 46m
English
In Play Framework, Route is the combination of Client Request and Controller Action, that means each Route contains mainly three parts—first one is HTTP Request method (that is GET), second is Client Request URI (that is /helloWorld) and last one or third one is the Controller Action. Consider the following table to understand it completely:
|
GET |
/helloWorld |
controllers.HelloWorldController.helloWorld |
In Play Framework, each Route from the Routings file does the following activities:
Here, the Client HTTP Request is GET /helloWorld.
Read now
Unlock full access