开发者

hibernate hbm2ddl boolean column typeCastException in dbunit

开发者 https://www.devze.com 2023-01-29 06:34 出处:网络
I use an in memory Derby database with Hibernate to create the tables. My tests use dbunit to prepare the database with test data.

I use an in memory Derby database with Hibernate to create the tables. My tests use dbunit to prepare the database with test data.

db.driverClass=org.apache.derby.jdbc.EmbeddedDriver
db.url=jdbc:derby:memory:myDb;c开发者_如何学编程reate=true
hibernate.dialect=org.hibernate.dialect.DerbyDialect
hibernate.hbm2ddl.auto=create-drop

Hibernate seems to create a smallint column type to store a boolean value. But dbunit cannot convert this value.

Caused by: org.dbunit.dataset.datatype.TypeCastException: Unable to typecast value <true> of type <java.lang.String> to SMALLINT

Any idea to make Hibernate create a boolean column (if available in derby) or to make dbunit write java boolean to the smallint column?

This explains the same issue, but there seems to be no DataTypeFactory implementation for Derby. http://old.nabble.com/Data-type-factory-for-Derby-database.-td25996976.html


I don't believe a true boolean datatype is currently available in Derby, although there is work underway to provide one, see: https://issues.apache.org/jira/browse/DERBY-4716. A Derby release supporting that work is expected "soon".

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号