作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试禁用Searchable插件默认搜索页面(http://localhost/searchable/),但是还没有找到一种方法来做到这一点。任何人都知道如何做到这一点,最好以合法的方式,但在必要时采取欺骗手段?
最佳答案
我通常将错误代码处理程序重新路由到 Controller ,以便在呈现 View 之前可以进行一些日志记录或其他操作。您也可以在这里使用它:
class UrlMappings {
static mappings = {
"/searchable/$action?"(controller: "errors", action: "urlMapping")
"/$controller/$action?/$id?" { }
"/"(view:"/index")
"403"(controller: "errors", action: "accessDenied")
"404"(controller: "errors", action: "notFound")
"405"(controller: "errors", action: "notAllowed")
"500"(view: '/error')
}
}
class ErrorsController {
def accessDenied = {}
def notFound = {
log.debug "could not find $request.forwardURI"
}
def notAllowed = {}
def urlMapping = {
log.warn "unexpected call to URL-Mapped $request.forwardURI"
render view: 'notFound'
}
}
关于grails - 禁用grails可搜索插件的默认搜索页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3170207/
我是一名优秀的程序员,十分优秀!