conf/routesファイルで「どのURLに対してどのControllerのどのメソッドを呼ぶか」を定義
GET /hello controllers.HomeController.hello
POST /submit controllers.FormController.submit
/user/42?key=value形式で追加情報を渡す/search?q=apple&page=2GET /hello/:name controllers.HomeController.hello(name: String)
/hello/ユーザー名のようにアクセスすると、nameに値が入るGET /user/:id/profile/:section controllers.UserController.profile(id: Long, section: String)