解決MySQL 5.5與hibernate儲存中文亂碼問題

來源:互聯網
上載者:User

解決MySQL 5.5與hibernate儲存中文亂碼問題

在使用hibernate與mysql做資料存放區的時候,會發現如果你存入的是中文會在資料庫中出現亂碼,解決方案如下:

將hibernate.cfg.xml中改成

<property name="hibernate.connection.url">

            jdbc:mysql://localhost:3306/hibernate?useUnicode=true&amp;characterEncoding=utf-8

  </property>

還要將mysql的設定檔my.init的改成

default-character-set=utf8

同時應該刪除原來的庫,建立同名的庫,設定編碼方式為utf-8,這樣即可。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.