Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/362.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java Seam3@ViewConfig重定向页面https_Java_Jsf_Jboss7.x_Seam - Fatal编程技术网

Java Seam3@ViewConfig重定向页面https

Java Seam3@ViewConfig重定向页面https,java,jsf,jboss7.x,seam,Java,Jsf,Jboss7.x,Seam,我有seam 3.1.0最终应用程序,安全部分使用@ViewConfig,它可以很好地重定向http @ViewConfig public interface AppViewConfig { static enum Checkout { @ViewPattern("/test/*") @User ADMIN, @FacesRedirect @ViewPattern("/*") @AccessDeniedView("/denied.xhtml")

我有seam 3.1.0最终应用程序,安全部分使用@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页面,例如(“”)
我怎么能做到

Seam 3使用名为Seam Faces的子系统处理JSF。根据这一点,为页面指定http或https方案的问题仍然没有得到解决