0

我有 seam 3.1.0 Final 应用程序,使用 @ViewConfig 作为安全部分,它可以很好地重定向 http,

@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 ”)页面我该怎么做?

4

1 回答 1

0

Seam 3 使用名为 Seam Faces 的子系统处理 JSF。根据这个Seam Faces 问题,为页面指定 http 或 https 方案的问题仍未解决。

于 2013-03-25T23:22:26.907 回答