InterviewSolution
| 1. |
How Many Directory For Create A New Directory In Play Framework? |
|
Answer» Here are some directories, creating for the new directory. App: The directory obtains the APPLICATION specific code such as models, views and controllers. The model directory will obtain the application domain model. The views directory provides server side TEMPLATES. And the controller’s package allows the Java code that responds for url routes. Conf: The conf directory allows application configuration and define the file routes. Project: The project directory provides the include scripts. The build system is based on sbt. Public: The public directory contains our public resources such as, JAVASCRIPT, CSS, and IMAGE directory and so on. TEST: The test directory provides application. Here are some directories, creating for the new directory. App: The directory obtains the application specific code such as models, views and controllers. The model directory will obtain the application domain model. The views directory provides server side templates. And the controller’s package allows the Java code that responds for url routes. Conf: The conf directory allows application configuration and define the file routes. Project: The project directory provides the include scripts. The build system is based on sbt. Public: The public directory contains our public resources such as, JavaScript, CSS, and image directory and so on. Test: The test directory provides application. |
|