1

我有这个网站:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:p="http://primefaces.prime.com.tr/ui">

<h:head></h:head>
<h:body>


    <h:form id="form-some">
        <h:inputText id="copingFilePhaseFocus">
            <p:ajax event="focus" actionListener="#{installationController.startCopyingWarFile}" />
        </h:inputText>
    </h:form>


</h:body>
</html>

和支持bean:

@ManagedBean(name = "installationController")
@SessionScoped
public class InstallationController implements IPluginInstallationListener {

    // Some methods here (...)

    public void startCopyingWarFile(ActionEvent event) {
        System.out.println("\n\n\n\nStarted\n\n\n\n");
    }
}

此代码在 MyFaces 2.0.0 下运行。但在 MyFaces 2.0.2 或 Mojarra 2.0.2 下没有。通过告诉“不起作用”,我的意思是单击(聚焦)输入文本不会触发 actionListener(文本“已启动”不会出现在标准输出中)。有没有人有类似的问题?

编辑 1(将 p:ajax 更改为 f:ajax 后):

    <p:outputPanel id="copingFilePhase">
        <p:accordionPanel speed="0.2"
            rendered="#{pluginInstallerWebBean.copingFilePhase}">
            <p:tab
                title="#{msg['installPlugin.copyingWar']} ... #{pluginInstallerWebBean.copingFilePhaseState}">
                <h:form prependId="false">
                    <p:focus for="copingFilePhaseFocus" />
                    <h:inputText id="copingFilePhaseFocus"
                        rendered="#{pluginInstallerWebBean.copingFilePhaseFocus}"
                        style="display:none;">
                        <f:ajax event="focus"
                            render="copingFilePhase obtainingPluginInformationPhase"
                            listener="#{installationController.startCopyingWarFile}" />
                    </h:inputText>
                </h:form>
                #{msg['installPlugin.copyingWarDescription']}
            </p:tab>
        </p:accordionPanel>
    </p:outputPanel>

    <p:outputPanel id="obtainingPluginInformationPhase">(...)</p:outputPanel>

错误是:

javax.faces.FacesException:包含未知 id 'copingFilePhase' - 无法在组件 copingFilePhaseFocus 的上下文中找到它

4

1 回答 1

4

这可能有两个原因:

  1. Primefaces 资源 servlet 配置不正确,这将导致无法加载必要的 JavaScript。在聚焦输入时,您应该能够通过检查 Web 浏览器中的 JS 错误控制台来查看是否有任何 JS 错误。在 Firefox 中,可以通过按Ctrl++来使用Shift控制台J

    资源 servlet 将在 Servlet 3.0 环境(Glassfish v3、Tomcat 7、JBoss 6 等)中自动加载,但是在旧环境中,您需要手动配置它web.xml

    <servlet>
        <servlet-name>PrimeFaces Resource Servlet</servlet-name>
        <servlet-class>org.primefaces.resource.ResourceServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>PrimeFaces Resource Servlet</servlet-name>
        <url-pattern>/primefaces_resource/*</url-pattern>
    </servlet-mapping>
    
  2. 方法签名错误。您应该能够通过阅读服务器日志并javax.el.MethodNotFoundException在日志中看到 a 来看到它。您问题中的代码示例是正确的,但ActionEvent. 包中有一个同名的类java.awt.event。您可能不小心(自动)导入了它。验证它是否确实是javax.faces.event.ActionEvent,而不是别的东西。

如果没有帮助,您可能需要考虑将 PrimeFaces 替换为p:ajax标准 JSF 2.0 f:ajax

<f:ajax event="focus" listener="#{installationController.startCopyingWarFile}" />

public void startCopyingWarFile(AjaxBehaviorEvent event) {
    // ...
}

AjaxBehaviorEvent在哪里javax.faces.event.AjaxBehaviorEvent

于 2010-12-04T12:54:42.800 回答