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://git.oschina.net/xixifeng.com/fastquery fastquery-v.1.0-alpha 预览版本下载地址