nebula-contrib / ngbatis

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 mybatis-plus. NGBATIS 是一款针对 NebulaGraph + Springboot 的数据库 ORM 框架。借鉴于 MyBatis 的使用习惯进行开发。https://graph-cn.github.io/ngbatis-docs/
https://nebula-contrib.github.io/ngbatis/
Apache License 2.0
132 stars 42 forks source link

StackOverflowError #281

Open sakuraemiya opened 10 months ago

sakuraemiya commented 10 months ago

我在dao层调用自定义的ngql,在调用次数过多的时候会报错java.lang.StackOverflowError: null,但是我在调用NebulaDaoBasic中内置的方法就不会出现这个问题,有什么解决的方法嘛

CorvusYe commented 10 months ago

-Xss2m 可以试试这个JVM启动参数

sakuraemiya commented 10 months ago

-Xss2m 可以试试这个JVM启动参数

好,请问是什么原因导致的这个问题

CorvusYe commented 10 months ago

模板引擎中会构建AST递归过深了

sakuraemiya commented 10 months ago

模板引擎中会构建AST递归过深了

除了设置栈空间 还有其他解决方法嘛

CorvusYe commented 10 months ago

目前还没有找到更好的方式😂