Java通用DAO类:yagdao
yagdao 是一个通用DAO(Data Access Objects)类,支持JPA2和hibernate,用户不用编写代码就能够实现一些常用的CRUD操作和查询操作。
public interface SimpleBeanDAO extends GenericDAO<SimpleBean, Long> { /** * Sample save method with two properties */ @YMethod(type = YMethodType.SAVE) SimpleBean customSave1(@YParameter("pstring") String p1, @YParameter("pdouble") double p2); @YMethod(type = YMethodType.UPDATE) SimpleBean customUpdate1(long id, @YParameter("pstring") String p1, @YParameter("pdouble") double p2); @YMethod(type = YMethodType.QUERY, query = "select s from SimpleBean s where s.pint>:minint") List<SimpleBean> customQuery2(@YParameter("minint") int arg1); @YMethod(type = YMethodType.CRITERIA) SearchResultList<SimpleBean> criteria1(@YParameter(value = "pint", operator = YOperator.GE) Integer arg1, YPage page); @YMethod(type = YMethodType.COUNT) long count1(@YParameter(value = "pint", operator = YOperator.GE) Integer arg1); }
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!