Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是一个完全的 Groovy 新手。我在这里看到了以下代码。
def beforeInterceptor = [action:this.&auth,except:'login']
如果操作是“login2”,我将如何扩展它以包含第二个异常?
哇,本来希望对此有一个快速的回答!
好吧,找到了我自己的答案:除了例外,你不能有多个例外。
请参阅此处的功能请求。
相反,他们建议创建一个过滤器。见这里。