zl程序教程

您现在的位置是:首页 >  Java

当前栏目

Apache Empire-db 2.3.0发布

2023-03-14 22:48:17 时间

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文件应添加下面的依赖

  1. <dependency> 
  2.      <groupId>org.apache.empire-db</groupId> 
  3.      <artifactId>empire-db</artifactId> 
  4.      <version>2.3.0</version> 
  5. </dependency> 

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

  1. <dependency> 
  2.      <groupId>org.apache.empire-db</groupId> 
  3.      <artifactId>empire-db-struts2</artifactId> 
  4.      <version>2.3.0</version> 
  5. </dependency> 

下载地址:http://empire-db.apache.org/downloads/latest.htm

【编辑推荐】

  1. JActor 3.0.0 RC2发布 Actor模式的Java实现
  2. MyEclipse 10.1发布 Java企业级开发工具
  3. 性能可以媲美Java的表达式引擎:Fel 0.7.1发布
  4. IntelliJ IDEA 11.1正式版发布 Java集成开发环境
  5. jsoup 1.6.2发布 最棒的Java HTML解析器