一、問題
在windows上面使用eclipse開發(fā)的項目在windows上面運行一切正常,部署到騰訊云時出現(xiàn)向MySQL數(shù)據(jù)庫中插入數(shù)據(jù)是中文亂碼
二、解決辦法
1、嘗試一
直接在linux上面使用insert語句插入中文,正常
2、嘗試二
在tomcat配置文件server.xml中加入useBodyEncodingForURI="true",不行
3、嘗試三
在tomcat配置文件server.xml中再加入URIEncoding="UTF-8",不行
4、嘗試四
由于是SSM框架項目,在web.xml中加過過濾器
filter>
filter-name>encodingFilter/filter-name>
filter-class>org.springframework.web.filter.CharacterEncodingFilter/filter-class>
async-supported>true/async-supported>
init-param>
param-name>encoding/param-name>
param-value>UTF-8/param-value>
/init-param>
/filter>
filter-mapping>
filter-name>encodingFilter/filter-name>
url-pattern>/*/url-pattern>
/filter-mapping>
不行
5、嘗試五
在mybatis配置文件的jdbc路徑后面加上?characterEncoding=utf-8,成功!
修改后的jdbc訪問路徑為:
jdbc:mysql://localhost:3306/daad?characterEncoding=utf-8
您可能感興趣的文章:- MySQL5.x版本亂碼問題解決方案
- 解壓版MYSQL中文亂碼問題解決方案
- node使用mysql獲取數(shù)據(jù)庫數(shù)據(jù)中文亂碼問題的解決
- php寫入mysql中文亂碼的實例解決方法
- MySQL字符集亂碼及解決方案分享
- linux下mysql亂碼問題的解決方案
- Mysql數(shù)據(jù)庫亂碼問題的對應(yīng)方式
- mysql中插入表數(shù)據(jù)中文亂碼問題的解決方法
- JDBC連接mysql亂碼異常問題處理總結(jié)
- MySQL如何解決DOS窗口亂碼問題