springboot 2.x: java.lang.ClassNotFoundException: org.springframework.boot.bind.RelaxedDataBinder

springboot 2.x 集成druid,引入的依赖为:


            com.alibaba
            druid-spring-boot-starter
            1.1.0
        

时启动报错:

Caused by: java.lang.ClassNotFoundException: org.springframework.boot.bind.RelaxedDataBinder

 

解决方案:

1、将springboot回退至1.x版本

2、druid-spring-boot-starter 版本升级至 1.1.13及以上 

 

 

 

你可能感兴趣的:(SpringBoot)