February 2018
Intermediate to advanced
552 pages
13h 46m
English
Controller Action contains mainly two parts—one is Play Controller name and another is that Controller's function name. We can represent this as <Fully Qualified Controller Name>.<That Controller's Function Name>. Take a look at the following table and example to understand it very well:
|
Controller Action parts |
Meaning |
|
Fully Qualified Controller Name |
Fully qualified means including package name (if any) |
|
Function Name |
Any required controller's function or method name |
For instance, controllers.HelloWorldDIController.helloWorld
Here controllers is a package name, HelloWorldDIController is a Play Controller name, controllers.HelloWorldDIController is fully qualified controller name. helloWorld is that ...
Read now
Unlock full access