我第一次尝试使用JSF Facelet模板/Facelet模板客户端。我正在与Netbeans 7.2.1创建模板和模板客户端。当我运行创建的JSF项目并调用http://localhost:8080/jpaweb/template.xhtml
时,我可以看到模板样式,但是当我调用客户端模板http://localhost:8080/jpaweb/client.xhtml
时,我看到的是没有样式的纯文本。这两个文件都在同一个目录下,由Netbeans向导创建。请帮我解决这个问题。
template.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:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html">
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="./resources/css/default.css" rel="stylesheet" type="text/css" />
<link href="./resources/css/cssLayout.css" rel="stylesheet" type="text/css" />
<title>Facelets Template</title>
</h:head>
<h:body>
<div id="top" class="top">
<ui:insert name="top">Top</ui:insert>
</div>
<div>
<div id="left">
<ui:insert name="left">Left</ui:insert>
</div>
<div id="content" class="left_content">
<ui:insert name="content">Content</ui:insert>
</div>
</div>
</h:body>
</html>
client.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:ui="http://java.sun.com/jsf/facelets">
<body>
<ui:composition template="./template.xhtml">
<ui:define name="top">
Welcome, to my website
</ui:define>
<ui:define name="left">
My links
</ui:define>
<ui:define name="content">
This page is created for testing
</ui:define>
</ui:composition>
</body>
</html>
如果您有Netbeans创建JSF项目,JSF模板和模板客户端将得到这个结果。我也在Netbeans 1.7.0中尝试过。同样的问题。
编辑:我运行的页面不像http://localhost:8080/jpaweb/client.xhtml
,但像http://localhost:8080/jpaweb/faces/client.xhtml
它工作。在我的项目中没有"faces"目录。我们必须为所有JSF链接添加"面"吗?
解决。将Project properties -> Frameworks -> JavaServer Faces -> Configuration -> JSF Servlet URL Pattern
的值从/faces/*
更改为*.xhtml
,可以正常工作
您的client.xhtml内容文件没有正确组成。不要包含html标记,因为JSF不会从这里的ui:composition
标记中解析出任何内容。
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
template="./template.xhtml">
<ui:define name="top">
Welcome, to my website
</ui:define>
<ui:define name="left">
My links
</ui:define>
<ui:define name="content">
This page is created for testing
</ui:define>
</ui:composition>
我测试了你的模板,它的工作