摘录自JSF in action 2.3.1 Naming containers Page/106
1. A naming container is a component whose children all have unique component identifiers.--组件中所包含的子组件的标识不能有重复.尽管UIViewRoot不是命名容器,但是它也要求最高一级的组件中不能有相同的标识.(The view’s root node (UIViewRoot), which is the parent of all of the other components on a given page, is not a naming container, but it does require that top-level components in the same view must have different identifiers.)
2. HtmlForm和HtmlDataTable都是Naming Container,一些第三方的组件也有可能是命名容器.
3. 客户端的标识(client identifier)在整个页面中都应该是唯一的(因为参数的名称必须是要唯一的)
4.以下为一个示例,两个组件的标识是相同的, 但是在客户端是不一样的










在客户端的展示为:









5. 客户端的标识生成是有规律的,由父标识和自身标识组成,中间默认为":"隔开,