fastquery-v.1.0-alpha 预览版本

    xiaoxiao2023-09-10  199

    FastQuery,简化Java访问数据库查询。做为一个开发者,仅仅只需要设计DAO接口即可。优雅而高速。

    public interface StudentDBService extends QueryRepository { @Query("select * from student") JSONArray findAll(); } // get porxy impl StudentDBService studentDBService=FQuery.getRepository(StudentDBService.class); // call findAll JSONArray jsonArray = studentDBService.findAll();

    文章转载自 开源中国社区[http://www.oschina.net]

    相关资源:敏捷开发V1.0.pptx
    最新回复(0)