Egima profile 0835118e85 added play-framework project (#678)
* made changes to java reflection

* removed redundant method makeSound in Animal abstract class

* added project for play-framework article
2016-09-13 17:52:27 +02:00

13 lines
528 B
Plaintext

# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~
GET / controllers.StudentController.listStudents()
POST /:id controllers.StudentController.retrieve(id:Int)
POST / controllers.StudentController.create()
PUT / controllers.StudentController.update()
DELETE /:id controllers.StudentController.delete(id:Int)
# Map static resources from the /public folder to the /assets URL path
GET /assets/*file controllers.Assets.versioned(path="/public", file: Asset)