如何根据环境制作一些URL映射?

时间:2010-05-27 19:37:54

标签: grails url-mapping

获取HTTP状态代码500时,我想根据运行环境显示2个不同的页面。

在开发模式中,我想显示一个stackStrace页面(如默认的Grails 500错误页面)和在生产模式下,我想显示一个正式的“内部”错误“页面。

有可能,我该怎么做?

2 个答案:

答案 0 :(得分:19)

您可以在UrlMappings.groovy

中执行特定于环境的映射

grails.util.GrailsUtil救援

它不漂亮,但我认为它会解决你的问题

E.g

import grails.util.GrailsUtil

class UrlMappings {
    static mappings = {


        if(GrailsUtil.getEnvironment() == "development") {

             "/$controller/$action?/$id?"{
                constraints {
                    // apply constraints here
                }
            }

            "/"(view:"/devIndex")
            "500"(view:'/error')
        }

        if(GrailsUtil.getEnvironment() == "test") {
            "/$controller/$action?/$id?"{
                constraints {
                    // apply constraints here
                }
            }

            "/"(view:"/testIndex")
            "500"(view:'/error')

        }



        if(GrailsUtil.getEnvironment() == "production") {
            "/$controller/$action?/$id?"{
                constraints {
                    // apply constraints here
                }
            }

            "/"(view:"/prodIndex")
            "500"(view:'/error')

        }
    }
}

答案 1 :(得分:14)

可能有一种更简洁的方法可以做到这一点,但我将错误代码映射到控制器并在那里处理逻辑:

class UrlMappings {

   static mappings = {

      "/$controller/$action?/$id?" { constraints {} }

      "/"(view:"/index")

      "403"(controller: "errors", action: "accessDenied")
      "404"(controller: "errors", action: "notFound")
      "405"(controller: "errors", action: "notAllowed")
      "500"(view: '/error')
   }
}

然后创建相应的控制器(grails-app / conf / controllers / ErrorsController.groovy):

import grails.util.Environment

class ErrorsController extends AbstractController {

   def accessDenied = {}

   def notFound = {}

   def notAllowed = {}

   def serverError = {
      if (Environment.current == Environment.DEVELOPMENT) {
         render view: '/error'
      }
      else {
         render view: '/errorProd'
      }
   }
}

您需要在grails-app / views / errors(accessDenied.gsp,notFound.gsp等)以及新的grails-app / views / errorProd.gsp中创建相应的GSP。通过路由到所有错误代码的控制器方法,您可以更轻松地将逻辑添加到其他错误代码处理程序中。