私は2つのページを持っています:
String page1 = "user/newuser.jsf";
String page2 = "department/newdepartment.jsf";
このようにリダイレクトするとpage1:
FacesContext.getCurrentInstance().getExternalContext().redirect(page1);
URL が に変わりますlocalhost:8080/NavFile/user/newuser.jsf。
このページでは、次の場所にリダイレクトしpage2ます。
FacesContext.getCurrentInstance().getExternalContext().redirect(page2);
URL が に変わりますlocalhost:8080/NavFile/user/department/newdepartment.jsf。しかしuser/department、私のアプリケーションにはディレクトリがありません。私の目標はにリダイレクトすることでしたlocalhost:8080/NavFile/department/newdepartment.jsf。
これはどのように発生し、どうすれば解決できますか?