首页 > 代码库 > play的过滤类怎么实现继承问题

play的过滤类怎么实现继承问题

原文:

 Example:


public class Secure extends Controller {
    
    @Before
    static void checkAuthenticated() {
        if(!session.containsKey("user")) {
            unAuthorized();
        }
    }
}    
And on another Controller:

@With(Secure.class)
public class Admin extends Controller {
    
    …
}

play的过滤类怎么实现继承问题