문제

Is there other way to use seam3-security restricting page access via permission without using seam-faces?

In seam-faces we use something like:

@ViewConfig
public interface PagesConfig {
    static enum Pages1 {

        @ViewPattern("/*")
        @LoginView("/login.xhtml")
        @AccessDeniedView("/errors/403.xhtml")
        ALL,
    }
}

If we don't want seam-faces is there another way to do it?

도움이 되었습니까?

해결책

Unfortunately this is not possible. To use the best out of seam-security you need to use seam-faces.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top