Skip to content

腾讯 APIJSON 的 SurrealDB 关系、时序、图、键值、搜索、文档 等多模型数据库插件。A SurrealDB plugin for Tencent APIJSON.

License

Notifications You must be signed in to change notification settings

APIJSON/apijson-surrealdb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

apijson-surrealdb

腾讯 APIJSON 7.4.0+ 的 SurrealDB 数据库插件,可通过 Maven, Gradle 等远程依赖。
An SurrealDB plugin for Tencent APIJSON 7.4.0+

image image image image

添加依赖

Add Dependency

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>

image


2. 在 pom.xml 中添加 apijson-surrealdb 依赖

2. Add the apijson-surrealdb dependency to pom.xml

	<dependency>
	    <groupId>com.github.APIJSON</groupId>
	    <artifactId>apijson-surrealdb</artifactId>
	    <version>LATEST</version>
	</dependency>

https://github.com/APIJSON/APIJSON-Demo/blob/master/APIJSON-Java-Server/APIJSONBoot-MultiDataSource/pom.xml



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-surrealdb 依赖

2. Add the apijson-surrealdb dependency in one of your modules(such as app)

	dependencies {
	        implementation 'com.github.APIJSON:apijson-surrealdb:latest'
	}



使用

Usage

在你项目继承 AbstractSQLExecutor 的子类重写方法 execute
Override execute in your SQLExecutor extends AbstractSQLExecutor

        @Override
        public JSONObject execute(@NotNull SQLConfig<Long> config, boolean unknownType) throws Exception {
            if (config.isSurrealDB()) {
                return SurrealDBUtil.execute(config, null, unknownType);
            }
   
            return super.execute(config, unknownType);
        }

在你项目继承 AbstractSQLConfig 的子类重写方法 execute
Override execute in your SQLConfig extends AbstractSQLConfig
	@Override
	public String getNamespace() {
		return SurrealDBUtil.getNamespace(super.getNamespace(), DEFAULT_NAMESPACE, isSurrealDB());
	}

	@Override
	public String getSQLNamespace() {
		return SurrealDBUtil.getSQLNamespace(super.getSQLNamespace(), isSurrealDB());
	}
        
	@Override
	public String getSchema() {
		return SurrealDBUtil.getSchema(super.getSchema(), DEFAULT_SCHEMA, isSurrealDB());
	}

	@Override
	public String getSQLSchema() {
		return SurrealDBUtil.getSQLSchema(super.getSQLSchema(), isSurrealDB());
	}



有问题可以去 Tencent/APIJSON 提 issue
Tencent/APIJSON#36



点右上角 ⭐Star 支持一下,谢谢 ^_^

Please ⭐Star this project ^_^

https://github.com/APIJSON/apijson-surrealdb

About

腾讯 APIJSON 的 SurrealDB 关系、时序、图、键值、搜索、文档 等多模型数据库插件。A SurrealDB plugin for Tencent APIJSON.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages