我在NetBeans中使用JSF。我想要做的就是在另一个页面中包含一个页面。但无论我尝试什么,当我运行主页时,我都没有错误,但我无法在主页中看到我的包含页面。为什么呢?
我的主页是:
<jsp:root version="2.1" xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:webuijsf="http://www.sun.com/webui/webuijsf">
<jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
<f:view>
<webuijsf:page id="page1">
<webuijsf:html id="html1">
<webuijsf:head id="head1">
<webuijsf:link id="link1" url="/css/front.css"/>
<webuijsf:script id="script1" url="/scripts/front2.js"/>
<webuijsf:link url="favicon.ico" rel="shortcut icon" type="image/x-icon"/>
</webuijsf:head>
<webuijsf:body id="body1" style="-rave-layout: grid">
<webuijsf:form id="form1">
<!-- This is where I include my page -->
<f:subview id="nav">
<jsp:include page="frontsitemenu.jsp" />
</f:subview>
</webuijsf:form>
</webuijsf:body>
</webuijsf:html>
</webuijsf:page>
</f:view>
我的包含页面是:
<f:subview id="frontsitemenu">
<f:verbatim>
<p>rrrrrrrrrrrrrrrrrr</p>
</f:verbatim>
</f:subview>
有人可以帮帮我吗?感谢
答案 0 :(得分:0)
我建议您使用:
<%@include file="_frontsitemenu.jsp" %>
多数人为我工作
答案 1 :(得分:0)
你应该每个包含一个 f:subview
。现在你有两个,<f:subview id="nav">
将jsp:include
和<f:subview id="frontsitemenu">
包装在包含页面内。通常的做法是将它们放在包含文件 中。因此,请从父页面中删除<f:subview id="nav">
。