java – 正确使用Facelet模板和复合组件
|
我仍然不确定正确使用JSF模板&复合部件.我需要创建一个企业Web应用程序,它将拥有大量页面.每个页面都有相同的标题,菜单,页脚,当然还有不同的内容(= JSF模板).每个页面上的内容将包含可重复使用的“框”(= JSF复合组件).这些盒子包括一些文件,按钮等.我的解决方案是否合适?或者我应该使用其他技术,如自定义组件,装饰……? layout.xhtml <h:body>
<ui:insert name="main_menu">
<ui:include src="/xhtml/template/main_menu.xhtml"/>
</ui:insert>
<ui:insert name="header">
<ui:include src="/xhtml/template/header.xhtml"/>
</ui:insert>
<ui:insert name="content"/>
<ui:insert name="footer">
<ui:include src="/xhtml/template/footer.xhtml"/>
</ui:insert>
</h:body>
customer_overview.xhtml: <html xmlns:cc="http://java.sun.com/jsf/composite/composite_component">
<h:body>
<!-- Facelet template -->
<ui:composition template="/xhtml/template/layout.xhtml">
<ui:define name="content">
<!-- Composite Components -->
<cc:component_case_history
caseList="#{customerOverviewController.cases}"
/>
<cc:component_customer
....
/>
...
</ui:define>
</ui:composition>
</h:body>
component_case_history.xhtml <html xmlns:composite="http://java.sun.com/jsf/composite">
<composite:interface>
<composite:attribute name="cases" type="java.util.List"/>
</composite:interface>
<composite:implementation>
<!-- using of "cases" -->
...
</composite:implementation>
CustomerOverviewController.java @ManagedBean
@ViewScoped
public class CustomerOverviewController {
public List<Case> getCases() {
...
}
}
编辑2012-04-27 基于: 我认为我应该使用Facelet模板Facelet标签文件而不是Facelet模板复合组件. 解决方法布局,模板layout.xhtml:
在这种情况下,您可以省略标题,页脚的ui:insert标记. <h:body>
<ui:include src="/xhtml/template/main_menu.xhtml"/>
<ui:include src="/xhtml/template/header.xhtml"/>
<ui:insert name="content"/>
<ui:include src="/xhtml/template/footer.xhtml"/>
</h:body>
您可能还有一个ui:insert没有名称,所以如果您想进一步简化: <h:body>
<ui:include src="/xhtml/template/main_menu.xhtml"/>
<ui:include src="/xhtml/template/header.xhtml"/>
<ui:insert/>
<ui:include src="/xhtml/template/footer.xhtml"/>
</h:body>
customer_overview.xhtml: 如果你有ui:在layout.xhtml中插入没有名字,你不需要ui:define here: <ui:composition template="/xhtml/template/layout.xhtml">
<!-- Composite Components -->
<cc:component_customer/>
<cc:component_case_history
caseList="#{customerOverviewController.cases}"
/>
...
</ui:composition>
您还应将模板放在用户无法直接访问的文件夹中(WEB-INF). 可重复使用的“盒子” 您的复合组件之一如下所示: <cc:component_customer/> 没有任何属性的组件非常可疑. >它做什么? 组件应该是独立的,对于其他可重用的部件,请使用ui:insert. (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
- 异常“javax.servlet.jsp.JspException:Broken pipe”是什
- 从实现Serializable的旧java类中删除字段
- Java并发之传统线程同步通信技术代码详解
- 简单讲解Java的Socket网络编程的多播与广播实现
- Android控件相对位置及长度单位
- java – Spring Boot:为RestControllers配置url前缀
- java – jpa criteriabuilder upper给出了编译错误
- SpringBoot 创建web项目并部署到外部Tomcat
- 为什么java.io.FileDescriptor的构造函数是公共的?
- 简单实现java音乐播放器
