Apache Empire-db 2.3.0发布

Apache Empire-db 2.3.0 发布了,这是 Empire-db 从孵化阶段毕业后首次发行的版本,现在 Empire-db 的首页地址为:

http://empire-db.apache.org/

该版本主要改进内容:

  • Allow specification of delete action for each DBRelation (ON DELETE CASCADE)
  • Extend Record and Column interfaces by Record.isReadOnly() and Column.validate() methods
  • Simplify use of DBCommand:DBCommandParam class
  • Allow expression based indexes
  • Allow to specify the character column length in bytes (Non-Unicode) or
  • chars (Unicode) for DDL generation

以及大量的 bug 修复。

Apache Empire-db 是一个开源的关系型数据持久化组件,能够实现数据库无关的动态查询定义,简便的数据读取和更新。与其它持久化组件相比 如:Hibernate、TopLink、iBATIS或JPA实现,Empire-db更注重编译期类型安全,减少冗余,开发效率的改进。 Empire-db所有的数据库实体都通过动态bean进行管理,因此允许在运行期改变数据模型。

Maven

在项目中使用Apache empire-DB 的POM文件应添加下面的依赖

<dependency> 



     <groupId>org.apache.empire-db</groupId> 




     <artifactId>empire-db</artifactId> 




     <version>2.3.0</version> 




</dependency> 

使用Apache empire DB-Struts2的扩展,在您的项目添加以下依赖项目的POM文件

相关推荐