Skip to content

Instantly share code, notes, and snippets.

@bells17
Last active August 29, 2015 14:06
Show Gist options
  • Save bells17/0422a78107095bef40e7 to your computer and use it in GitHub Desktop.
Save bells17/0422a78107095bef40e7 to your computer and use it in GitHub Desktop.
Play Framework-routes設定 ref: http://qiita.com/bells17/items/39fdbca0b2dbde7aa9ee
/path/to/project/config/routes
play new [プロジェクト名]
# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~
# Home page
GET / controllers.Application.index
# Map static resources from the /public folder to the /assets URL path
GET /assets/*file controllers.Assets.at(path="/public", file)
[METHOD] [PATH] [CONTROLLER-ACTION]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment