SpringBoot项目报错: Cause: java.lang.NullPointerException] with root cause

时间:2024-04-11 17:28:42

在集成SpringBoot框架的过程中,遇到的错误,记录下解决办法。
如果有需要,可以看我之前的博客,了解一下SpringBoot框架如何集成代码逆向生成插件generator、集成mybatis持久层框架、配置Druid数据源等。
SpringBoot+Mybatis-Generator+Mybatis+Druid+Pagehelper+Swagger2环境搭建

报错:

2018-11-02 10:18:10.367 ERROR 26608 --- [nio-8089-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]    : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: 
### Error updating database.  Cause: java.lang.NullPointerException
### Cause: java.lang.NullPointerException] with root cause

解决方法:

找了半天,才发现是我修改了application.yml配置文件出的问题。
application.yml配置文件中有关数据源的属性被我修改为
SpringBoot项目报错: Cause: java.lang.NullPointerException] with root cause

原先Druid配置文件中的注解@ConfigurationProperties为

//将application.yml中前缀为spring.datasource的配置项,自动注入
@ConfigurationProperties(prefix = "spring.datasource")

应修改为

//将application.yml中前缀为spring.datasource.druid的配置项,自动注入
@ConfigurationProperties(prefix = "spring.datasource.druid")