我正在尝试使用 Netbeans 使用 facelets 制作 Web 应用程序。我想使用 Icefaces 作为我的小部件。我收到以下错误消息警告:此页面调用 XML 命名空间http://www.icefaces.org/icefaces/components声明,前缀为 ace,但该命名空间不存在标记库。
并且控件没有出现。我有一个最简单的文件
<?xml version="1.0" encoding="UTF-8"?>
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!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:ace="http://www.icefaces.org/icefaces/components"
xmlns:ice="http://www.icesoft.com/icefaces/component"
>
<head>
<title>Shalom Elias</title>
</head>
<body>
<h:form id="form">
Shalom
<ace:dateTimeEntry id="date1" value="#{backing.date1}" renderAsPopup="true"/>
</h:form>
</body>
</html>
web.xml 看起来像
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<context-param>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>server</param-value>
</context-param>
<context-param>
<param-name>javax.faces.FACELETS_SKIP_COMMENTS</param-name>
<param-value>true</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>welcome.jsf</welcome-file>
</welcome-file-list>
我认为 taglibrary 应该在 icefaces-compat.jar 中,它应该是类路径。顺便说一句,我使用了 ace:,但 ice: 有完全相同的问题。不幸的是,作为一个新用户,我无法上传我的目录结构的快照,但 jar 文件位于 web/WEB-INF/classes 下,这在我看来是合乎逻辑的。
问题是:缺少什么???
谢谢,伊兰