1. 程式人生 > >SQLServer資料通過java儲存到MySQL中出現unicode編碼問題

SQLServer資料通過java儲存到MySQL中出現unicode編碼問題

雙資料來源將sqlserver中的資料匯出存入mysql時出現編碼問題,SQLServer的字集為unicode,而需要在mysql中存入utf-8的字集。

 

通過配置application.properties檔案,如下

#SQLServer資料庫
spring.datasource.remote.url=jdbc:sqlserver://192.168.1.1:1433;DatabaseName=DatabaseName
spring.datasource.remote.username=sa
spring.datasource.remote.password=123456
spring.datasource.remote.driver-class-name=com.microsoft.sqlserver.jdbc.SQLServerDriver

#MySql資料庫
spring.datasource.location.url=jdbc:mysql://192.168.1.2:3306/databasename2?useSSL=false&serverTimezone=UTC&useUnicode=yes&characterEncoding=utf-8&allowPublicKeyRetrieval=true
spring.datasource.location.username=root
spring.datasource.location.password=234567
spring.datasource.localtion.driver-class-name=com.mysql.jdbc.Driver

 

同時應更改mysql中表的編碼

mysql>alter table tablename convert to character set utf8mb4 collate utf8mb4_unicode_ci;