我使用冰面1.8 app的例子。
pom是:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>groupId</groupId>
<artifactId>tab</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.icefaces.netbeans.rave</groupId>
<artifactId>wyswyg-appbase</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.icefaces</groupId>
<artifactId>just-ice</artifactId>
<version>1.8.2</version>
</dependency>
<dependency>
<groupId>org.icefaces</groupId>
<artifactId>icefaces-comps</artifactId>
<version>1.8.2</version>
<exclusions>
<exclusion>
<groupId>org.icefaces</groupId>
<artifactId>icefaces</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.icefaces</groupId>
<artifactId>icefaces-facelets</artifactId>
<version>1.8.2</version>
<exclusions>
<exclusion>
<groupId>org.icefaces</groupId>
<artifactId>icefaces</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
<artifactId>jsf-facelets</artifactId>
<version>1.1.14</version>
</dependency>
</dependencies>
</project>
&#13;
web.xml是:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
<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>/faces/*</url-pattern>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>
</web-app>
&#13;
faces-config.xml为空:
如果我把它放在上面
<application>
<view-handler>com.icesoft.faces.facelets.D2DFaceletViewHandler</view-handler>
</application>
&#13;
该应用程序抛出此异常:
java.lang.RuntimeException:com.sun.faces.config.ConfigurationException:
无法创建&#39; com.icesoft.faces.facelets.D2DFaceletViewHandler的新实例
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
"http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
</faces-config>
&#13;
index.xhtml是:
<?xml version="1.0" encoding="UTF-8"?>
<!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:h="http://java.sun.com/jsf/html"
xmlns:f="http://xmlns.jcp.org/jsf/core" xmlns:ace="http://www.icesoft.com/icefaces/component"
xmlns:ice="http://www.icesoft.com/icefaces/component"
>
<h:form>
<h:outputLabel value="Hello, world"/>
<ice:outputText value="hello world ice outputtext"/>
</h:form>
</html>
&#13;
问题是,当我运行这个并生成xhtml时,只有h标签&#34; Hello,world&#34;被渲染。 ice faces标签(ice:outputText)没有呈现,因为在xhtml代码中,它仍然是它。
我尝试了我在网上找到的所有已发布的解决方案,对于拉斯4天来说,没有什么对我有用。
我尝试ICEFaces 3.x,不同的名称空间,tomcat 6/7等
我使用的是Intellij 14和Tomcat 6.0.44
请告诉我,如果有人发现我做错了/遗失了什么,以及你是否需要我的应用/环境中的任何其他信息,该怎么办。
非常感谢!
答案 0 :(得分:1)
我试图做的是使用(并渲染)一个复合组件。
我终于解决了使用复合组件的模板:
这是template.xhtml上的结构
<h:head>
...
</h:head>
<h:body>
<div class="[name1]">
<h:form>
<ui:insert name="[name2]"/>
</h:form>
</div>
</h:body>
&#13;
并以主要形式使用它:
<ui:composition ...
xmlns:composite="http://java.sun.com/jsf/composite/componentes"
template="/WEB-INF/templates/template.xhtml">
<ui:define name="name2">
<ice:[any ice component]>
</ice:[any ice component]>
</ui:define>
&#13;
可能是模板中的表单标签不是必需的,甚至模板都没有,在网上浏览网页时,这是我解决的方式。
需要进一步细节,请问。或者,如果有人有更好的方法来做到这一点,将非常欢迎。
问候!