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]