ngbatis icon indicating copy to clipboard operation
ngbatis copied to clipboard

NGBATIS is a database ORM framework base NebulaGraph + spring-boot, which takes advantage of the mybatis’ fashion development, including some de-factor operations in single table and vertex-edge, like...

Results 91 ngbatis issues
Sort by recently updated
recently updated
newest added

删除NebulaDaoBasic中重复的setReturnType语句

https://github.com/vesoft-inc/nebula-java/releases

help wanted

support query directly by entity

- optimized `showSpaces` method code and related code format

![image](https://github.com/user-attachments/assets/3199426f-e696-43ef-9576-9dd4f1ab2cc7) ![Uploading image.png…]()

bug

原因备忘:实体类存在继承关系时,传给数据库参数中,子类与父类同时声明了相同属性,实际值被父类覆盖成空值 https://github.com/nebula-contrib/ngbatis/blob/3bd3c22dba7064c962c53ab3f2a064d1924e292c/src/main/java/org/nebula/contrib/ngbatis/binding/DefaultArgsResolver.java#L137 (备忘,待修复)

Spring Boot 工程,属性配置默认在Nacos Config中,本地环境启动Spring Boot 服务时需要覆盖Nacos Config中对应的属性配置(主要是nebula.hosts)。在IDEA 运行参数设置 nebula.hosts 为VPN地址时,发现 NgbatisContextInitializer的initialize 方法被调用了两次,第一次是本地属性被调用,第二次为Nacos Config 中设置的Nebula相关属性被调用,导致服务无法正常启动,Nacos Config 中设置信息只能在公司内网中使用。公司之外需要请求VPN地址才可以。 按照Spring Boot 属性配置优先级原则,初始化客户端应该只初始化一次,且为配置优先级最高的属性为准。