Spring boot 2.0 配置报错java.lang.NoClassDefFoundError: org/springframework/boot/bind/RelaxedPropertyRes

 springboot2.0使用的druid版本过低

org.springframework.boot.bind 包已经删掉了,导致RelaxedPropertyResolver这个方法已经不可用了.

API中写到,不再可用了,因为环境会自动处理,去找到这个配置文件

改为最新的版本
 



   com.alibaba
   druid-spring-boot-starter
   1.1.10

https://blog.csdn.net/lklihaikunkun/article/details/79579185

你可能感兴趣的:(SpringBoot)