我有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,例如("https://domain.com:443/myApp/login.xhtml")页面我怎么能做到呢?
Seam 3通过一个名为Seam Faces的子系统处理JSF。根据这个Seam Faces问题,为页面指定http或https方案的问题仍然没有解决。