【Spring Boot問題】--SocialAutoConfigurerAdapter缺失問題
阿新 • • 發佈:2018-12-04
在學習慕課網的《Spring Security技術棧開發企業級認證與授權》的時候,使用spring-boot-autoconfigure的版本是1.5.13
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<version>1.5.13.RELEASE</version>
</dependency>
到我使用的時候最新版本是2.0.6,導致一個問題就是沒有SocialAutoConfigurerAdapter這個類
import org.springframework.social.config.annotation.SocialConfigurerAdapter;
這樣程式碼提示找不到,網上也有很多人在問:
使用springboot2.0+的版本沒有SocialAutoConfigurerAdapter這個類
專案啟動時候:SocialAutoConfigurerAdapter 不存在 ?
SocialAutoConfigurerAdapter找不到?
發現網上還是有人解決了這個問題的:
【Spring Security OAuth2筆記系列】- Spring Social第三方登入 - QQ登入中
注意看這個官網文件: https://docs.spring.io/spring-social/docs/1.1.x/
由於在spring-boot-autoconfigure-2.0.4.RELEASE.jar沒有對 social的自動配置了
所以我搞這節課的連通流程花費了5個小時,最後認證檢視官網文件的說明才跑起來