我有一个正在开发的应用程序,我的公司有一个标题横幅,需要出现在所有页面上。我们有大约 6 个不同版本的标题横幅围绕我的团队浮动,我现在想要制作它,以便我只需将源中的横幅包含到我的应用程序中,这样如果他们更新横幅的源,我的应用程序的版本横幅也会自动更新。
using<ui:include src="http://mycompany.com/banner.html" />
导致错误The markup in the document following the root element must be well-formed.
。
即使它不是格式良好的 xml,我如何包含此横幅?
我当前的模板:
<!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:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui"
xmlns:ui="http://java.sun.com/jsf/facelets">
<ui:composition>
<h:body>
<div>
<ui:include src="http://mycompany.com/banner.html" />
</div>
<ui:insert name="content" />
</h:body>
</ui:composition>
</html>