spring-boot启动信息中non-fatal error

java.lang.ClassNotFoundException: org.springframework.data.web.config.EnableSpringDataWebSupport
缺少依赖:
在gradle.build文件dependencies添加
  compile("org.springframework.data:spring-data-commons")

java.lang.ClassNotFoundException: org.springframework.security.config.annotation.web.configuration.EnableWebSecurity
缺少依赖:
在gradle.build文件dependencies添加
  compile("org.springframework.boot:spring-boot-starter-security")

原文地址:https://www.cnblogs.com/badboyf/p/6233295.html