I have a DAO infrastructure as follows: StoreDao, CouponDao, PersonDao. All these extend from a GenericDao which has the bulk of the functionality(using Java Generics).
I know this is very often asked , but I cannot find a working solution : This is my AbstractDAO : public interface AbstractDao<T>
I\'m using pylons with sqlalchemy. I have several models, and f开发者_JS百科ound myself wrote such code again and again:
I am trying to develop generic DAO in java. I have tried the following. Is this a good way to implement generic DAO? I don\'t want to use hibernate. I am trying to make it as generic as possible so t
i thinking of doing this architecture genericdao +interface ---> servicelayer+interface---> view layer