试试设置下数据库字符集
应该是你数据库字符集和你eclipse的字符集不同,把他们的字符集统一了试试
中文乱码,mysql中设置一下字符集utf-8,你的eclipse的workspace和文件的字符集就好了
jdbc.url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8
你的连接是不是这样设置的,还有就是你的的数据库的服务器编码是不是中文的或者utf-8的
mysql> show variables like '%char%';
+--------------------------+----------------------------+
| Variable_name | Value |
+--------------------------+----------------------------+
| character_set_client | utf8 |
| character_set_connection | utf8 |
| character_set_database | utf8 |
| character_set_filesystem | binary |
| character_set_results | utf8 |
| character_set_server | utf8 |
| character_set_system | utf8 |
| character_sets_dir | /usr/share/mysql/charsets/