Login 类中定义了integer类型的属性mobile;
映射文件Login.hbm.xml中设置了mobile属性的长度为11,但是自动生成的数据库Login表中mobile的长度还是默认的长度10.
试过String的length属性了,可以修改,但是integer的不行。(oracle和mysql都试过了)
从数据库更改mobile的长度后,使用插入11位数字的用户登陆,会报如下异常:
ERROR JDBCExceptionReporter:101 - 数字溢出
org.springframework.jdbc.UncategorizedSQLException: Hibernate operation: could not execute query; uncategorized SQLException
但是将mobile的数据更改为10位数字就完全没问题,可以正常登陆
hibernate integer length
int 类型的最大数就10位数