APIJSON/APIJSONORM
2022-11-07 05:11:57 +08:00
..
src/main 远程函数:解决 key-() 优先执行结果不会作为 SQL 部分,解决非表对象中 key() 执行时机滞后于子对象 2022-11-07 05:11:57 +08:00
.gitignore Demo 工程迁移到 APIJSON-Demo 项目;APIJSONORM 和 APIJSONFramework 迁移到最外层;调整文档中的链接 2020-09-15 22:12:10 +08:00
pom.xml 完善对 Presto, Trino 的支持;解决 SQL JOIN 当部分 JDBC rsmd.getTableName 返回空值导致最终主表字段插到副表对象导致 最终返回 JSON 为空或者副表字段写进主表覆盖同名字段等 2022-10-26 06:10:25 +08:00
README.md Update README.md 2020-11-22 03:08:19 +08:00

APIJSONORM

腾讯 APIJSON ORM 库,可通过 Maven, Gradle 等远程依赖。
Tencent APIJSON ORM library for remote dependencies with Maven, Gradle, etc.

Maven

1. 在 pom.xml 中添加 JitPack 仓库

1. Add the JitPack repository to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

2. 在 pom.xml 中添加 APIJSON 依赖

2. Add the APIJSON dependency to pom.xml

	<dependency>
	    <groupId>com.github.Tencent</groupId>
	    <artifactId>APIJSON</artifactId>
	    <version>LATEST</version>
	</dependency>



Gradle

1. 在项目根目录 build.gradle 中最后添加 JitPack 仓库

1. Add the JitPack repository in your root build.gradle at the end of repositories

	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

2. 在项目某个 module 目录(例如 app) build.gradle 中添加 apijson-orm 依赖

2. Add the APIJSON dependency in one of your modules(such as app)

	dependencies {
	        implementation 'com.github.Tencent:APIJSON:latest'
	}