<property name="jdbcUrl">jdbc:mysql://localhost:3306/company?useUnicode=true&characterEncoding=utf-8</property>
出現插入中文亂碼問題:可能是連接數據庫的編碼方式有問題
在連接字符串后邊加上以下代碼即可:
?useUnicode=true&characterEncoding=utf-8
<property name="jdbcUrl">jdbc:mysql://localhost:3306/company?useUnicode=true&characterEncoding=utf-8</property>
出現插入中文亂碼問題:可能是連接數據庫的編碼方式有問題
在連接字符串后邊加上以下代碼即可:
?useUnicode=true&characterEncoding=utf-8
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。