记录一下idea自动生成Entity

最近在鼓捣spring -boot ,真好用,学习到jpa.

通过生成Entity 文件,能够快速的生成数据库,并且使用 JpaRepository 的基本增删查改 方法,好用的一批.

可是随之,问题来了,实际的开发中,不会是去创建Entity 再去生成数据库的,而是现有了数据库再去搭建整个项目,需要去维护的是数据库,而不是去维护java文件.

所以,就需要去生成Entity文件.

idea提供了好用的工具.

第一步,先使用idea去连接数据库.

记录一下idea自动生成Entity

第二步

记录一下idea自动生成Entity

选择hibernate

记录一下idea自动生成Entity

选择成功后悔发现项目中有下面两个文件

记录一下idea自动生成Entity

此时来到

记录一下idea自动生成Entity

选择通过数据定义

记录一下idea自动生成Entity

这里选择包,和文件名前缀,后缀

记录一下idea自动生成Entity

确定后就会在选择的包下面生成对应的Entity文件了.

注意一点,因为char类型和byte的原因 ,.程序之后可能运行会报错,因为数据库是char,生成实体文件后变成了string.

org.hibernate.tool.schema.spi.SchemaManagementException: Schema-validation: wrong column type encountered in column [COLUMN] in table [TABLE]; found [char (Types#CHAR)], but expecting [varchar(255) (Types#VARCHAR)]

 这个时候,需要手动去实体文件上加上定义就行.

记录一下idea自动生成Entity

上一篇:Java并发(十):读写锁ReentrantReadWriteLock


下一篇:Xcode 7遇到 App Transport Security has blocked a cleartext HTTP 错误