java - spring操作數(shù)據(jù)庫(kù)顯示中文亂碼的問題?
問題描述
操作系統(tǒng):ubuntuIDE:idea數(shù)據(jù)庫(kù):Mysql我用php操作數(shù)據(jù)庫(kù)的時(shí)候中文顯示是沒有問題的,可以正常顯示中文:
但是我學(xué)習(xí)spring的時(shí)候操作數(shù)據(jù)庫(kù)的時(shí)候中文就會(huì)出現(xiàn)問號(hào),無(wú)法正常顯示
我在spring中寫的數(shù)據(jù)庫(kù)配置
# 在項(xiàng)目初始化時(shí),重新創(chuàng)建數(shù)據(jù)表spring.jpa.hibernate.ddl-auto=update# 指定連接的類型為mysql 連接的地址為:localhost 端口為3306 ,數(shù)據(jù)為springmvcspring.datasource.url=jdbc:mysql://localhost:3306/springmvc# 用戶名為rootspring.datasource.username=root# 密碼為空spring.datasource.password=# 顯示SQL語(yǔ)句spring.jpa.show-sql=true
我的數(shù)據(jù)庫(kù)和idea都是用的utf_8編碼,為什么會(huì)出現(xiàn)這種問題呢?
問題解答
回答1:修改
spring.datasource.url=jdbc:mysql://localhost:3306/springmvc
為
spring.datasource.url=jdbc:mysql://localhost:3306/springmvc?useUnicode=true&characterEncoding=utf-8
相關(guān)文章:
1. 運(yùn)行python程序時(shí)出現(xiàn)“應(yīng)用程序發(fā)生異常”的內(nèi)存錯(cuò)誤?2. macos - 無(wú)法source activate python273. css3 讓圖片變成灰色(filter),但針對(duì)IE11瀏覽器無(wú)效4. java - butterknife怎么綁定多個(gè)view5. java - 同步/異步與阻塞/非阻塞之間的差異具體是什么?6. android - Genymotion 模擬器可以做屏幕適配檢測(cè)嗎?7. html5 - 前端面試碰到了一個(gè)緩存數(shù)據(jù)的問題,來(lái)論壇上請(qǐng)教一下8. javascript - 打算寫一個(gè)c++的node圖像處理模塊,有沒有推薦的c++圖片處理庫(kù)?9. html - vue里面:src在IE(9-11)下不顯示圖片10. 我在導(dǎo)入模板資源時(shí)遇到無(wú)法顯示的問題,請(qǐng)老師解答下

網(wǎng)公網(wǎng)安備