mysql
wxyoug
一枝笔
展开
-
idea执行向MySQL数据库插入中文数据出现乱码
spring.datasource.url=jdbc:mysql://localhost:3306/mp?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8。加上useUnicode=true&characterEncoding=utf8后缀即可原创 2020-12-10 16:52:20 · 280 阅读 · 0 评论 -
Linux运行MySQL5.7报错ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)
问题:密码错误,解决办法:重置密码。步骤:1、关闭MySQL服务:service mysql stop。(若mysql服务在开启状态:用ps -ef|grep mysql检查)2、修改MySQL配置文件my.cnf,一般my.cnf文件在/etc目录下。3、在配置文件的[mysqld]标签下添加:skip-grant-tables;保存后退出,并启动MySQL服务:service mysql start4、启动进入MySQL,此时要求输入密码,直接回车就跳过进入MySQL了。原创 2020-08-30 12:29:36 · 389 阅读 · 0 评论 -
项目中在页面添加的数据到数据库显示?乱码
在项目mysql数据库的properties文件中url后面添加:&characterEncoding=utf-8注意:在xml配置文件中配置数据库的url时,要使用&的转义字符也就是&。还有个问题,如果&characterEncoding=utf-8中的“&”符号写为“?”,会出现以下错误:报错信息:No timezone mapping entry for 'GMT+8?characterEncoding=utf-8'修改方法:将“?”.原创 2020-07-30 11:50:02 · 356 阅读 · 0 评论