2013-03-25 3 views
0

나는 심에게 3.1.0 최종 응용 프로그램이 보안 부분에 대한 @ViewConfig를 사용, 그것은 좋은 리디렉션 HTTP를 작동Seam3 @ViewConfig 리디렉션 페이지에 https

@ViewConfig 
public interface AppViewConfig { 

static enum Checkout { 
    @ViewPattern("/test/*") 
    @User 
    ADMIN, 

    @FacesRedirect 
    @ViewPattern("/*") 
    @AccessDeniedView("/denied.xhtml") 
    @LoginView("/login.xhtml") //todo I need redirect https://localhost:443/myApp/login.xhtml 
    ALL; 
} 

}

하지만 내가로 리디렉션합니다 https (예 : "https://domain.com:443/myApp/login.xhtml") 페이지 어떻게 할 수 있습니까?

답변

0

Seam 3는 Seam Faces라는 하위 시스템으로 JSF를 처리합니다. 그리고이 Seam Faces issue에 따르면 페이지에 http 또는 https 체계를 지정하는 문제는 여전히 해결되지 않습니다.