求助hibernate mapping中设置的character长度无效
在mapping文件中设置了character的长度为6,但是生成表的时候CHAR长度却为1.
同样设置的string的长度在生成表时是有效果的,代码如下:
<property name="curl" length="6" not-null="true" type="character"/>
<property name="officialshop" length="60" not-null="true" type="string"/>
`curl` CHAR(1) NOT NULL,
`officialshop` VARCHAR(60) NOT NULL,