最近使用 springboot 配置 MySQL 時出現(xiàn)了一個錯誤
創(chuàng)新互聯(lián)公司于2013年開始,先為迭部等服務(wù)建站,迭部等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為迭部企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。
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)致了這個錯誤,
單獨使用 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ū)別
以上就是本次介紹的全部相關(guān)知識點內(nèi)容,感謝大家的學(xué)習(xí)和對創(chuàng)新互聯(lián)的支持。