前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到教程。
报错:Caused by: java.lang.IllegalArgumentException: Repository interface must not be null on initialization!
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userRepository': FactoryBean threw exception on object creation; nested exception is java.lang.IllegalArgumentException: Repository interface must not be null on initialization!
在我们的项目中是 springBoot 、dubbo 、jpa 整合的。
原因和解决:
如下图中红框中位置 ,自动建表设置最初是 create , 后来我改为了 update,但事实上只有数据库为空库的时候才用建表。
第一次建表成功后 ,就应该改为 none 。
改为 none 之后就能正常启动工程了。
springBoot 的配置文件中关于数据库的配置: