fastquery-v.1.0-alpha 预览版本

简介:

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]

相关文章
|
5月前
|
存储 图形学
【unity小技巧】unity中导入下载的3D模型及albedo/baseColor、normal 、AO/Occlus、metallic、roughness贴图纹理设置
【unity小技巧】unity中导入下载的3D模型及albedo/baseColor、normal 、AO/Occlus、metallic、roughness贴图纹理设置
89 0
|
安全 Linux 测试技术
alpha、beta、rc这些发布的版本各自含义
alpha、beta、rc这些发布的版本各自含义
359 0
alpha、beta、rc这些发布的版本各自含义
|
API 图形学 Windows
艾伟:Silverlight 3 Beta 新特性解析(2)-Graphics篇
前提条件: 阅读本文之前请确认你已经安装了如下软件 Visual Studio 2008 (Express) SP1 Silverlight 3 Tools For Visual Studio Microsoft Expression Blend 3 MIX 09 Preview   ...
1014 0
|
Web App开发 JavaScript
Firefox 4.0 Beta 8开始开发 新引擎依然没影
Mozilla曾经说过,并且不止一次的说过,他们会在下一个Beta版中整合传说中非常强力的JaegerMonkey引擎,据说该引擎可以很好的解决Firefox在网页中Javascript脚本处理的低效率问题。
707 0