📅  最后修改于: 2020-10-23 06:45:37             🧑  作者: Mango
JSF提供了内置的验证器来验证其UI组件。这些标签可以验证字段的长度,可以是自定义对象的输入类型。
对于这些标记,您需要在html节点中使用以下URI命名空间。
以下是JSF 2.0中重要的验证器标签-
S.No | Tag & Description |
---|---|
1 | f:validateLength
Validates the length of a string |
2 | f:validateLongRange
Validates the range of a numeric value |
3 | f:validateDoubleRange
Validates the range of a float value |
4 | f:validateRegex
Validates JSF component with a given regular expression |
5 | Custom Validator
Creates a custom validator |