标签: hibernate jsf
我使用Hibernate创建一个默认大小为255的列,例如:
@Column(name="name") private String name;
在我看来: <h:inputText value="#{userController.user.name}" />
<h:inputText value="#{userController.user.name}" />
默认情况下,JSF是否会针对name的用户输入验证数据库列的最多255个字符? 如果没有,最佳做法是什么,是否必须使用name属性定义length的最大尺寸或使用f:validateLength?
name
length
f:validateLength