<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    paulwong

    Hibernate Generic D.A.O. Framework

    The motivation behind the framework

    We had worked on a project where we hand-coded all of our DAOs. This produced four irksome difficulties: (1) Method names and implementations were not altogether consistent. (2) It was a pain to make additional columns sortable or filterable, and as a result, a lot of pages lacked good sorting and filtering. (3) Making additional DAOs was tedious and took a fair amount of time. (4) Writing tests for DAOs is tricky and tedious, so no one really did.

    This framework aims to ease our troubles.

    Why might you consider looking into this framework?

    • Generic DAO: With the sweetness of Java generics, the concept of generic DAOs is not new, and it’s not difficult. However, we’ve put a lot of work into making these easy to use and robust. So if you like the way we’ve done it, then this framework provides ready-made code for you. On the other hand if you’d rather make your own, then simply feel free to look at our source code for ideas and help on a few potentially tricky issues.
    • Search: Search is the most original and sophisticated part of this framework, and it can be used with or without the generic DAO portion of the framework. The search capability is designed around the use-case of a list page with sorting, filtering, column selection and paging. However, its use is certainly not limited to that. The value that the search adds is simpler, more robust querying with less coding and less testing. It is similar to Hibernate Criteria, but it is simpler to use and can easily move across layers of an application including view and even remote layers. Plus is works with both Hibernate and JPA*.
    • Remote DAO (for R.I.A.s?): If you you’re like us, you don’t want to write and configure an individual DAO style remote service for each entity in a R.I.A. or other client-heavy application. This framework may have the solution. We provide utilities and sample code to adapt our single general DAO to any remoting technology interface. Just configure this single remote access point and the client can do any basic CRUD or search operation on any entity. Again, if you don’t like our way of doing things, maybe you can at least get some ideas from our source code.
    • Remote Search (for R.I.A.s?): As mentioned above, the framework can provide a single point for client-server CRUD and search operations. The framework’s search is meant to be able to cross the client-server boundary. So lists and searches in the client application can take advantage of the same easy-to-use features and consistency that the search functionality provides in the server tier or single tier application. This consistency allowed us to create a reusable collection type in Adobe Flex 3 that is associated with a single search object and automatically updates itself from the server according to the search parameters.**

    *A fairly simple adapter is required for each JPA provider. Right now we only have an adapter for Hibernate Entity Manager. If anyone would like to contribute an adapter for any other JPA provider (OpenJPA, TopLink, etc.), that would be great.

    **If time permits, we would like to eventually post our corresponding Adobe Flex 3 framework and utilities.

    More Information

    Wiki Documentation: UserGuide

    Javadoc: http://hibernate-generic-dao.googlecode.com/svn/trunk/docs/api/index.html

    Blog: http://hibernategenericdao.wordpress.com/

    Questions and Comments

    Please post at http://groups.google.com/group/java-generic-dao.

    Code Examples

    Creating DAOs for individual model classes:

    Simply extend the GenericDAO class with the specific type.

    
    
    public interface ProjectDAO extends GenericDAO<Project, Long> 

    }
     

    public class ProjectDAOImpl extends GenericDAOImpl<Project, Long> implements ProjectDAO 

    }

    The following methods (and several more) are now available on ProjectDAO

    Project project = projectDAO.find(projectId);
     List
    <Project> list = projectDAO.findAll();
    projectDAO.save(project);
    projectDAO.remove(project);
    projectDAO.removeById(project.getId());

    Search search
    = new Search();
    search.addFilterEqual(
    "name", "hibernate-generic-dao");
    List
    <Project> list = projectDAO.search(search);

    int count = projectDAO.count(search);
    SearchResult
    <Project> result = projectDAO.searchAndCount(search);
    list
    = result.getResult();
    count
    = result.getTotalCount();
    search.clear();
    search.addField(
    "rating", Field.OP_AVG);
    int avgProjectRating = (Integer) prjoectDAO.searchUnique(search);


    A GeneralDAO is also provided with DAO methods for any entity:


    public interface GeneralDAO {
    public <T> T find(Class<T> type, Serializable id);
    public <T> T[] find(Class<T> type, Serializable ids);
    public <T> T getReference(Class<T> type, Serializable id);
    public <T> T[] getReferences(Class<T> type, Serializable ids);
    public boolean save(Object entity); public boolean[] save(Object entities);
    public boolean remove(Object entity); public void remove(Object entities);
    public boolean removeById(Class<?> type, Serializable id);
    public void removeByIds(Class<?> type, Serializable ids);
    public <T> List<T> findAll(Class<T> type);
    public List search(ISearch search); public Object searchUnique(ISearch search);
    public int count(ISearch search); public SearchResult searchAndCount(ISearch search);
    public boolean isAttached(Object entity);
    public void refresh(Object entities); public void flush();
    public Filter getFilterFromExample(Object example);
    public Filter getFilterFromExample(Object example, ExampleOptions options); }

    Search DTO usage examples


    Search search = new Search(Project.class);

    //filtering
    search.addFilterEqual("name", "hibernate-generic-dao");

    search.addFilterLessThan(
    "completionDate", new Date());

    search.addFilterOr(
    Filter.equal(
    "name", "Jack"),
    Filter.and(
    Filter.equal(
    "name", "Jill"),
    Filter.like(
    "location", "%Chicago%"),
    Filter.greaterThan(
    "age", 5) )
    );

    search.addFilterIn(
    "name", "Jack", "Jill", "Bob");

    search.addFilterNot(Filter.in(
    "name","Jack", "Jill", "Bob"));

    //sorting
    search.addSort("name");
    search.addSort(
    "age", true); //descending

    //projection
    search.addField("name");
    search.addField(
    "location");

    //or with column operators
    search.addField("rating", Field.OP_AVG);
    search.addField(
    "developerCount", Field.OP_MAX);

    //paging
    search.setMaxResults(15); //a.k.a. results per page
    search.setPage(3);

    //controlling eager fetching of relationships
    serach.addFetch("owner");
     

    Nested properties are also fully supported...


    search.addFilterEqua("status.name", "active");
    search.addFilterGreaterThan(
    "workgroup.manager.salary", 75000.00);
    search.addSort(
    "status.name");

    posted on 2011-11-26 04:23 paulwong 閱讀(1181) 評論(0)  編輯  收藏 所屬分類: HIBERNATE

    主站蜘蛛池模板: 精品香蕉在线观看免费| 亚洲一区精品视频在线| 亚洲影院在线观看| 亚洲成_人网站图片| 一级毛片免费视频| 在线亚洲人成电影网站色www | 一级做a爰片久久毛片免费陪 | 无码av免费一区二区三区试看| 日韩在线视频免费看| 亚洲理论在线观看| 日本免费一区二区三区四区五六区 | 亚洲国产精彩中文乱码AV| 一级做a爰片久久毛片免费看| 久久er国产精品免费观看8| 午夜私人影院免费体验区| 91亚洲国产成人久久精品| 91免费播放人人爽人人快乐| 粉色视频在线观看www免费| 免费A级毛片无码免费视| 91亚洲国产成人久久精品| 亚洲欧洲日本在线| ssswww日本免费网站片| 亚洲一区二区三区自拍公司| a级毛片100部免费观看| 国产亚洲av片在线观看16女人| 亚洲一久久久久久久久| 成人人观看的免费毛片| 国产免费人成视频尤勿视频| 亚洲国产精品免费观看| 久久亚洲精品无码| 毛片免费全部播放无码| 亚洲人成网站看在线播放| 好爽又高潮了毛片免费下载| 国产免费拔擦拔擦8X高清在线人 | 成年免费a级毛片免费看无码| 久久精品a一国产成人免费网站| 亚洲国产精品专区| 亚洲av之男人的天堂网站| 免费福利网站在线观看| 国产成人 亚洲欧洲| 亚洲精品福利你懂|