play的過濾類怎麼實現繼承問題

原文:session

 Example:spa


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 {          … }
相關文章
相關標籤/搜索