greenDAO是什么
greenDAO是一个开源的Android ORM,使SQLite数据库的开发再次有趣。它减轻开发人员处理低级数据库需求,同时节省开发时间。 SQLite是一个令人敬畏的嵌入式关系数据库。不过,编写SQL和解析查询结果是相当乏味和耗时的任务。通过将Java对象映射到数据库表(称为ORM,“对象/关系映射”),greenDAO可以将它们从这些映射中释放出来。这样,可以使用简单的面向对象的API来存储,更新,删除和查询Java对象。
greenDAO的功能和优势
- 最高性能(可能是Android最快的ORM);并且开源
- 易于使用的功能强大的API涵盖
- 最小的内存消耗
- 数据库加密,greenDAO支持SQLCipher,以保护用户的数据安全
- 强大的社区,官网首页:http://greenrobot.org/greendao/ ,github首页:https://github.com/greenrobot/greenDAO
尤其在性能方面,greenDAO 远远高于同类的其他ORM框架,测试结果参考至官网:http://greenrobot.org/greendao/features/
如何将greenDAO添加到工程
参照搞其github首页的readme,首先是整个工程项目下的build.gradle的配置;然后是单独的Module(如默认的:app)下的build.gradle的配置
// In your root build.gradle file:
buildscript {
repositories {
jcenter()
mavenCentral() // add repository
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.1'
classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' // add plugin
}
}
// In your app projects build.gradle file:
apply plugin: 'com.android.application'
apply plugin: 'org.greenrobot.greendao' // apply plugin
dependencies {
compile 'org.greenrobot:greendao:3.2.2' // add library
}
遇到网速很慢的情况下,可以换阿里云服务器。
Project build.gradle:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
// jcenter()
// mavenCentral() // add repository
maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}//阿里云服务器
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2'
classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' // add plugin
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
// jcenter()
maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}//阿里云服务器
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
app module build.gradle:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
// jcenter()
// mavenCentral() // add repository
maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}//阿里云服务器
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2'
classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' // add plugin
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
// jcenter()
maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}//阿里云服务器
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
实例讲解
我们在新建的工程的app module下面先新建一个实体类UserEntity.java:
里面有name,password,age这3项属性,注意在public class的上方,我们加有@Entity注解标签,表明这是一个实体类。然后我们make project,在build/generated/source下面greenDAO会自动帮我们生成3个文件
同时回过头我们也发现我们刚刚的实体类也发生了变化:新增了getter,setter以及构造函数
我们可以通过在Module的build.gradle中新增配置来设置greenDAO帮我们自动生成文件的路径,而不是在build/generated/source下面,因为这样找起来比较麻烦:
greendao {
schemaVersion 1
daoPackage 'com.example.greendaodemo.greendao.gen'
targetGenDir 'src/main/java'
}
- schemaVersion---->指定数据库schema版本号,迁移等操作会用到
- daoPackage-------->通过gradle插件生成的数据库相关文件的包名,默认为你的entity所在的包名
- targetGenDir-------->这就是我们上面说到的自定义生成数据库文件的目录了,可以将生成的文件放到我们的java目录中,而不是build中,这样就不用额外的设置资源目录了
再次make project你就会发现,生成的目录不一样了,是不是很爽?
关于greenDAO的介绍和基本配置入门就先介绍到这里,请关注下一节内容:greenDAO 3.X详细解析(二)