溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

解決springboot 連接 mysql 時報錯 using password: NO的方案

發(fā)布時間:2020-09-17 19:38:56 來源:腳本之家 閱讀:261 作者:鬾鬽鬿魀魁䰡 欄目:編程語言

最近使用 springboot 配置 mysql 時出現(xiàn)了一個錯誤

Access denied for user ''@'localhost' (using password: YES) 或者
Access denied for user ''@'localhost' (using password: NO)

經(jīng)發(fā)現(xiàn)這是 springboot 中 yml 語法的的一個坑,在我現(xiàn)在用的最新版本2.2.4 的springBoot中所推薦 yml 的格式是

data-username: root
data-password: 112233

就是前面加了 data- 的這種格式導(dǎo)致了這個錯誤,

單獨(dú)使用 data-username 報錯 using password: YES

如果使用 data-password 報錯 using password: NO

后來查看源碼發(fā)現(xiàn),對于 username 和 password 的參數(shù)有一句這樣的說明:Login username of the database./ Login password of the database.
而 data-username 和 data-password 的說明又有不同:

Username of the database to execute DML scripts (if different). / Password of the database to execute DML scripts (if different).
執(zhí)行DML腳本的數(shù)據(jù)庫的用戶名(如果有)。

到這里問題已經(jīng)很明顯了, 什么叫 "執(zhí)行DML腳本的數(shù)據(jù)庫的用戶名" 它和 "數(shù)據(jù)庫的登錄用戶名" 之間又有什么區(qū)別

<br><br>

以上就是本次介紹的全部相關(guān)知識點(diǎn)內(nèi)容,感謝大家的學(xué)習(xí)和對億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI