有没有其他方法可以使用 seam3-security 通过权限限制页面访问而不使用 seam-faces?
在接缝面中,我们使用类似的东西:
@ViewConfig
public interface PagesConfig {
static enum Pages1 {
@ViewPattern("/*")
@LoginView("/login.xhtml")
@AccessDeniedView("/errors/403.xhtml")
ALL,
}
}
如果我们不想要接缝面,还有其他方法吗?