当尝试将我们的复合组件捆绑到jar中并作为依赖项包含在另一个项目中时,我遵循了following answer。
这适用于除复合组件实现之外的所有内容。
我们的普通项目的文件夹结构如下所示:
CommonWebProject
|-- META-INF
| |-- resources
| | `-- common
| | |-- css
| | | ...
| | |-- js
| | | ...
| | |-- components
| | | `-- comment.xhtml
| | |-- templates
| | | `-- defaultTemplate.xhtml
| |-- faces-config.xml
| `-- MANIFEST.MF
:
comment.xhtml包含:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.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:ui="http://java.sun.com/jsf/facelets" xmlns:p="http://primefaces.org/ui" xmlns:composite="http://java.sun.com/jsf/composite">
<composite:interface>
</composite:interface>
<composite:implementation>
<p>TESTING!</p>
</composite:implementation>
</html>
实际的实现如下所示:
<?xml version="1.0" encoding="UTF-8" ?>
<ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:csxc="http://java.sun.com/jsf/composite/csxcomponent" xmlns:p="http://primefaces.org/ui"
xmlns:common="http://java.sun.com/jsf/composite/common"
template="/common/templates/defaultTemplate.xhtml">
<ui:define name="head">
</ui:define>
<common:comment/>
</ui:composition>
从通用jar中提取的模板“defaultTemplate.xhtml”在这里正常工作,但标记却无法正常工作。检查页面仅显示标签。
有什么想法吗?
最佳答案
CommonWebProject
|-- META-INF
| |-- resources
| | `-- common
| | |-- components
| | | `-- comment.xhtml
: : :
因此,资源相对路径是
/common/components/comment.xhtml
。然而,
xmlns:common="http://java.sun.com/jsf/composite/common"
...
<common:comment />
XML namespace 基本上说
comment.xhtml
在/common
文件夹内。实际上不在那里。它实际上在/common/components
文件夹中。对齐它。
xmlns:common="http://java.sun.com/jsf/composite/common/components"
...
<common:comment />
同时,我已经修复了您在此处找到的答案。
关于jsf - 将JSF Composite组件打包到JAR中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48528237/