spring boot 2.x版本:启动报错:Error creating bean with name 'dataSource' defined in class path resource

#在使用spingBoot 2.x版本的时候,使用alibaba的druid数据库连接池,com.github.pagehelper的分页插件1.1.2版本,启动项目报错。

错误日志如下:

Error creating bean with name 'dataSource' defined in class path resource [com/alibaba/druid/spring/boot/autoconfigure/DruidDataSourceAutoConfigure.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [javax.sql.DataSource]: Factory method 'dataSource' threw exception; nested exception is java.lang.NoClassDefFoundError: org/springframework/boot/bind/RelaxedDataBinder

 

解决方案一:使用jdbc连接

        
            org.springframework.boot
            spring-boot-starter-jdbc
        

解决方案二:boot版本改为1.5.x版本

解决方案3:

第一步、把druid连接池版本更新到最新1.1.13

第二步、分页插件更新到1.2.3



   com.github.pagehelper
   pagehelper-spring-boot-starter
   1.2.3



   com.alibaba
   druid-spring-boot-starter
   1.1.13

第三步、使用com.mysql.cj.jdbc.Driver(application.yml文件)

datasource:
        name: test
        url: jdbc:mysql://127.0.0.1:3306/hometeach?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8
        username: root
        password: 123456

        # 使用druid数据源
        type: com.alibaba.druid.pool.DruidDataSource
        driver-class-name: com.mysql.cj.jdbc.Driver #就是修改了这一行

 

 

你可能感兴趣的:(java,SpingBoot,spingboot,java)