11 2023 档案
摘要:MySQL不能插入中文 要注意MySQL的数据库字符集必须是utf8,同时也需要检查你的字段是否也是utf8 Ubuntu开启MySQL远程连接 use mysql; select user,host from user; update set host = '%' where user = 'ro
阅读全文
摘要:从ThreadLocal的get和set方法入手 public void set(T value) { Thread t = Thread.currentThread(); ThreadLocalMap map = getMap(t); if (map != null) map.set(this,
阅读全文