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.
私の Grails アプリケーションには、アクションごとにすべてのコントローラーを保護する 2 つのフィルターがあります (コントローラー: ' '、アクション: ' ')。filter1 が filter2 の前に実行されるように指定するにはどうすればよいですか?
次のように、フィルター クラスでdependsOnプロパティを指定してそれを行うことができます。
class SecondFilters { def dependsOn = [FirstFilters] def filters = { ... } }