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

使用若依创建的项目,项目启动的时候没有报错,但是执行的时候显示空指针异常 #204

Closed keyouth0 closed 1 year ago

keyouth0 commented 1 year ago

使用若依创建的项目,并且使用demo中的方式简单尝试一个插入,项目启动的时候没有报错,但是执行的时候显示空指针异常,debug的时候看到是对应的mapper没有正常创建。请问这个问题要怎么修复 image

keyouth0 commented 1 year ago

项目结构大概这样:image image image image

CorvusYe commented 1 year ago

scanBasePackages 需要追加基础包

scanBasePackages = { "org.nebula.contrib", "com.nebulabackend.ngbatis" } 
keyouth0 commented 1 year ago

哦,不好意思,测试其他部分把这个给忘记了。