play之路由 routes
2017-01-19 16:23 绿贝 阅读(655) 评论(0) 编辑 收藏 举报routes
play的路由保存在conf/routes文件夹
类似于这个样子:
# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~
# Home page
GET / Application.index
GET /menu/{userid} Application.menu
GET /tv TvScheduleAction.index
# Catch all
* /BusWeb/{controllername}/{actionname}.action Application.switcher
* /BusWeb/system/updatefile Application.switcher(controllername:'system',actionname:'updatefile')
* /plugin
public static void switcher(String controllername, String actionname)
throws Exception { String actionUrl = "/" + controllername.toUpperCase() + "/" + actionname.toUpperCase(); //处理业务 }
上面是一个特殊的例子。
具体的参考http://blog.csdn.net/jasper_success/article/details/48370235
这里只说一下play插件的路由。