primefaces poll标签不起作用

时间:2010-07-12 20:08:22

标签: jsf tags primefaces

我正在使用primefaces库这是我的jsp页面源:

<%@taglib uri="http://primefaces.prime.com.tr/ui" prefix="p"%>
<%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<f:view>
<head>
  <p:resources />
  <base href="<%=basePath%>">

  <title>My JSP 'index.jsp' starting page</title>
</head>

<body>

   <h:form>
    <h:outputText id="txt_count" value="#{counterBean.count}" />
    <p:poll actionListener="#{counterBean.increment}" update="txt_count" />
   </h:form>

</body>

  </f:view>
</html>

我的后面的bean代码是:

import javax.faces.event.ActionEvent;


public class CounterBean {
private int count;
public void increment(ActionEvent actionEvent) {
count++;
}
//getters and setters
public int getCount() {
 return count;
}
public void setCount(int count) {
 this.count = count;
}
}

我的web.xml如下

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.5" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee   http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
  <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>0</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.faces</url-pattern>
  </servlet-mapping>
  <servlet>
<servlet-name>Resource Servlet</servlet-name>
<servlet-class>org.primefaces.resource.ResourceServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Resource Servlet</servlet-name>
<url-pattern>/primefaces_resource/*</url-pattern>
</servlet-mapping>
  <welcome-file-list>
    <welcome-file>test.jsp</welcome-file>
  </welcome-file-list>
</web-app>

我的网页加载正确,但不是定期更新

当它被加载时它说“雅虎没有被定义”,所以它不起作用。

我已经定义了资源servlet,但它还没有工作!

请帮助我!

1 个答案:

答案 0 :(得分:3)

你显然在JSF 2.0上使用PrimeFaces 2.0。 JSF 2.0中p:resources 已弃用。您应该使用Facelets而不是JSP。如果一切正常,您应该在服务器日志中看到以下条目:

INFO: p:resources component is deprecated and has no use in PrimeFaces 2.0 as
      JSF 2.0 resource apis are used instead to place resources on page.

由于页面中未包含资源,因此不包含所需的JavaScript文件,生成的JavaScript代码无法找到Yahoo库引用,因此您检索到JS错误。如果您在浏览器中右键单击了网页并检查了生成的HTML源代码,那么您应该已经注意到还缺少<script>

要解决此问题,请永远转储 JSP并使用Facelets。它是JSP的继承者,在将JSF纳入图片时更为出色。

*.jsp文件重命名为*.xhtml并使用以下代码:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" 
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:p="http://primefaces.prime.com.tr/ui">
    <h:head>
        <title>My Facelets 'index.xhtml' starting page</title>
        <base href="//#{request.serverName}:#{request.serverPort}#{request.contextPath}"></base>
    </h:head>
    <h:body>
       <h:form>
           <h:outputText id="txt_count" value="#{counterBean.count}" />
           <p:poll actionListener="#{counterBean.increment}" update="txt_count" />
       </h:form>
    </h:body>
</html>

阅读JSF书籍/教程时,请确保阅读的是JSF 2.0,而不是1.x.

相关问题