簡體   English   中英

Spring 升級后無法啟動

[英]Spring Boot not starting after upgrade

我剛剛從 Spring Boot 1.5.19 升級到 2.3.11 並從 Gradle 4.0 升級到 6.5

我可以構建項目,但是當我嘗試運行時,出現以下錯誤。

這在升級之前運行良好。

*****************************
APPLICATION FAILED TO START
*****************************

Description:

Parameter 1 of constructor in controllers.IndexController required a bean of type 'org.springframework.mail.javamail.JavaMailSenderImpl' that could not be found.

我不知道這個 bean 之前是如何連接到您的應用程序中的。 我會說這絕對不是 Gradle 更新的問題,現在這個 bean 丟失了。

您應該確保您的項目中包含以下依賴

// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-mail
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-mail', version: '2.5.0'

並驗證配置是否正確設置

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM