1

我试图在我的 .xhtml 中包含另一个域(在同一台服务器上)上的 xhtml。

示例代码如下

<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:p="http://primefaces.org/ui">

    <h:head>
        <h:outputStylesheet library="css" name="style.css" target="body" />
    </h:head>
    <h:body>
        <p:layout id="page" fullPage="true">
            <!-- North -->
            <p:layoutUnit position="north" size="10%"
                style="border: none !important">
            </p:layoutUnit>

            <!-- South -->
            <p:layoutUnit position="south" size="5%" collapsible="true" gutter="0">
                <h:outputText value="South unit Content." />
            </p:layoutUnit>

            <!-- West -->
            <p:layoutUnit position="west" size="200" header="Menu"
                collapsible="true" effect="slide" styleClass="menuBar">
                <h:form id="form1">
                    <p:panelMenu>
                        <p:submenu label="Students">
                            <p:menuitem value="page1" update=":centerpanel"
                                actionListener="#{layoutController.setNavigation('page2.xhtml')}" />
                            <p:menuitem value="page2" update=":centerpanel"
                                actionListener="#{layoutController.setNavigation('http://localhost:8080/externalsite/newpage.xhtml')}" />
                        </p:submenu>
                    </p:panelMenu>
                </h:form>
            </p:layoutUnit>

            <!-- Center -->
            <p:layoutUnit id="center" position="center">
                <h:panelGroup id="centerpanel" layout="block">
                    <ui:include id="include" src="#{layoutController.navigation}" />
                </h:panelGroup>
            </p:layoutUnit>

        </p:layout>
    </h:body>

</html>

所以基本上在中心布局单元中,我试图包含外部 .xhtml (但是它在同一个域上)。

4

2 回答 2

3

只有在同一个类加载器中可用时,才能包含 JSF 模板。

如果你想在你的页面中嵌入一个外部页面,你需要用户iframe

例如:

<iframe src="http://www.primefaces.org/showcase/ui/home.jsf"/>

允许您在页面中嵌入 PrimeFaces 展示。

于 2013-06-11T11:44:53.427 回答
1

这是不可能的。使用ui:include标签,您只能包含来自其他 xhtml 文件的代码片段。您正在尝试做的是从另一个域访问代码,但您在最终 Web 应用程序中看到的只是生成的 HTML 和 Javascript 代码。您无法在应用程序中使用它,因为您无权访问源代码。

于 2013-06-11T10:43:25.767 回答