我在tomcat 8上运行了一个primefaces Web应用程序。在META-INF/context.xml
我定义了以下内容:
<?xml version="1.0" encoding="UTF-8"?>
<Context antiJARLocking="true" path="/syslac"/>
虽然在我的视图xhtml页面中我有这个片段代码,其中p:commandButton有一个oncomplete标记,它将执行handleLoginRequest函数。
<h:form>
<h:panelGrid columns="2" cellpadding="5">
<h:outputLabel for="username" value="Usuario:" />
<p:inputText value="#{loginBean.usuarioVendedor.usuarioSistema}" id="username" required="true" label="username" />
<h:outputLabel for="password" value="Contrasena:" />
<h:inputSecret value="#{loginBean.usuarioVendedor.clave}" id="password" required="true" label="password" />
<f:facet name="footer">
<p:commandButton value="Ingresar" update=":growl" actionListener="#{loginBean.loguearse}" oncomplete="handleLoginRequest(xhr, status, args)" />
</f:facet>
</h:panelGrid>
</h:form>
剧本:
<script type="text/javascript">function handleLoginRequest(xhr, status, args)
{
if (args.validationFailed || !args.loggedIn) {
jQuery('#dialog').effect("shake", {times: 2}, 100);
} else {
dlg.hide();
jQuery('#loginLink').fadeOut();
window.location = args.view;
}
}
</script>
但我无法从META-INF/context.xml
通过logginBean检索上下文路径,以便我可以发送视图arg以供导航中的window.location使用:/syslac/page.xhtml
其中syslac是应用程序的上下文路径。
答案 0 :(得分:0)
上下文路径位于ExternalContext#getRequestContextPath()
提供的辅助bean中。
String contextPath = FacesContext.getCurrentInstance().getExternalContext().getRequestContextPath();
所以你可以这样做:
String loginURI = contextPath + "/login.xhtml";
// ...
上下文路径在EL HttpServletRequest#getContextPath()
中可用。
#{request.contextPath}
所以你可以这样做:
<h:outputScript>
// ...
window.location = "#{request.contextPath}" + args.view;
</h:outputScript>
或者当您的脚本位于.js
文件中时(正确的做法!):
<html lang="en" data-baseuri="#{request.contextPath}">
window.location = document.documentElement.dataset.baseuri + args.view;