Java的DAO框架:AutoDAO
jopen
12年前
AutoDAO 项目的目标是让Java DAO类的创建变得尽可能简单。只要设计DAO接口,并在接口中利用注释编写必要的HQL,就能够实现所需要的功能。不需要编写实现代码和复杂的XML配 置。对于Common DAO查询可以不用写任何持久化代码,支持Hibernate/JPA,支持在代码编译的时候就能够检查CRUD操作。支持分页,命名参数,命名查询和 HQL校验以实现复杂HQL语句的简单化。
主要特性:
- 对公共DAO查询实现零持久化代码
- 注解驱动的零配置DAO接口自动发现
- Hibernate 3 和 4 支持
- JPA 2.0 支持
- 原生SQL查询
- Ready to use compile-time checked CRUD operations
- Paging, Named parameters, Named queries and HQL-validation support to make usage of complex HQL simpler
- Custom parameter types, Joda-time support, transactions and other nifty things just to make your life even more fun
public interface BookDao { @Finder(query="from Book where title = ?") Book getByTitle(String title); @Finder(query="from Book where title like :titlePart and author = :author") List<Book> findByAuthorAndTitlePart(@Named("titlePart") String titlePart, @Named("author") String author); }