UrlMappings.groovy
上传用户:steveyhw
上传日期:2019-05-13
资源大小:307k
文件大小:0k
源码类别:

PlugIns编程

开发平台:

Java

  1. class UrlMappings {
  2.     static mappings = {
  3.       "/$controller/$action?/$id?"{
  4.       constraints {
  5.  // apply constraints here
  6.   }
  7.   }
  8.   "500"(view:'/error')
  9. }
  10. }