CMobileCom JPA是 Java JDBC 和 Android 的 JPA 规范的新实现。它是轻量级的,大约 380K。您可以添加以下 gradle 依赖项:
安卓:
dependencies {
implementation("com.cmobilecom:cmobilecom-jpa-android:${version}@aar") {
transitive = true
}
annotationProcessor "com.cmobilecom:cmobilecom-jpa-processor:$version"
}
Java JDBC:
dependencies {
implementation "com.cmobilecom:cmobilecom-jpa-jdbc:$version"
// annotation processor: generate static metamodel
compileOnly "com.cmobilecom:cmobilecom-jpa-processor:$version"
}
支持 JPA 注释,因此您无需添加另一个 jar 来解析代码中的 JPA 注释。
请参阅开发人员指南:
https://cmobilecom.com/docs/jpa/latest/devguide/index.html
免责声明:我是CMobileCom JPA的开发人员。