我正在使用 grails 构建一个主要用作服务框架的应用程序。我的问题是:服务能否以与控制器相同的方式得到保护?
基于uri的示例:
class SecurityFilters {
def filters = {
all(uri: "/**") {
before = {
// Ignore direct views (e.g. the default main index page).
if (!controllerName) return true
// Access control by convention.
accessControl()
}
}
}
}