SSH开发中中文乱码问题

1、在用Myeclipse 进行JavaWeb开发过程中首先需要设置Myeclipse的编码方式,window->preference->general->workspace  Text file encoding 设置成UTF-8

  window->preference->myeclipse->file and Editers ->jsp encoding 设置成UTF-8

2、在jps页面上面加上<%@page contentType="text/html; charset=UTF-8" %> 

3,、在web.xml加上Filter


    Spring character encoding filter
    org.springframework.web.filter.CharacterEncodingFilter
   
    encoding
    utf-8
   

 

该Filter 主要设置request的编码方式

4、设置tomcat的编码方式  tomcat->conf->server.xml

               connectionTimeout="20000"
               redirectPort="8443" URIEncoding="utf-8" 
  useBodyEncodingForURI="true" />

5、MySQL乱码问题,首先需要设置所用数据库的编码方式,数据库属性->字符集    为utf-8       整理为utf-8

然后在hibernate.cfg.xml 中设置连接编码方式

jdbc:mysql://localhost/packet?useUnicode=true&characterEncoding=UTF-8

你可能感兴趣的:(编程常见问题)