spróbować zbudować nielegalne URL - fragment (#
) jest zawsze ostatnia część adresu URL.
return "view?faces-redirect=true#msg"
będzie prawidłowym adresem URL.
Niestety ten fragment jest usuwany domyślnie NavigationHandler
, przynajmniej w JSF 2.2.
Podczas gdy dwie opcje BalusC również działają, mam do zaoferowania trzecią opcję. Owinąć NavigationHandler
i ViewHandler
z małym skrawku:
public class MyViewHandler extends ViewHandlerWrapper {
public static final String REDIRECT_FRAGMENT_ATTRIBUTE = MyViewHandler.class.getSimpleName() + ".redirect.fragment";
// ... Constructor and getter snipped ...
public String getRedirectURL(final FacesContext context, final String viewId, final Map<String, List<String>> parameters, final boolean includeViewParams) {
final String redirectURL = super.getRedirectURL(context, viewId, removeNulls(parameters), includeViewParams);
final Object fragment = context.getAttributes().get(REDIRECT_FRAGMENT_ATTRIBUTE);
return fragment == null ? redirectURL : redirectURL + fragment;
}
}
public class MyNavigationHandler extends ConfigurableNavigationHandlerWrapper {
// ... Constructor and getter snipped ...
public void handleNavigation(final FacesContext context, final String fromAction, final String outcome) {
super.handleNavigation(context, fromAction,
storeFragment(context, outcome));
}
public void handleNavigation(final FacesContext context, final String fromAction, final String outcome, final String toFlowDocumentId) {
super.handleNavigation(context, fromAction,
storeFragment(context, outcome), toFlowDocumentId);
}
private static String storeFragment(final FacesContext context, final String outcome) {
if (outcome != null) {
final int hash = outcome.lastIndexOf('#');
if (hash >= 0 && hash + 1 < outcome.length() && outcome.charAt(hash + 1) != '{') {
context.getAttributes().put(MyViewHandler.REDIRECT_FRAGMENT_ATTRIBUTE, outcome.substring(hash));
return outcome.substring(0, hash);
}
}
return outcome;
}
}
(musiałem utworzyć opakowanie dla ViewHandler tak, ponieważ poprawka dla JAVASERVERFACES-3154)
dobra myśl, że kawałek JS. Również 'ExternalContext # redirect()' działa bardzo. Jeszcze raz fajna odpowiedź :) – bluefoot