连接mysql时的时区设置
在mysql6之后,通过jdbc连接MySQL时,如果未设置时区会报如下错误:
1The server time zone value '???ú±ê×??±??' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
此时可修改MySQL连接设置时区为北京时间:
1url=jdbc:mysql://localhost:3306/test?serverTimezone=Asia/Shanghai&?useUnicode=true&characterEncoding=u ...
java-String类
java中String类的介绍
java-缓存池
java缓存池的基本介绍
A Hybrid Approach to Automatic Corpus Generation for Chinese Spelling Check
一种用于中文拼写检查的自动语料生成的混合方法论文阅读
leecode-图
leetcode中关于图有关的的典型题目
leecode--字符串
leetcode中关于字符串有关的的典型题目
leecode-哈希表
leetcode中关于哈希表有关的的典型题目
leecode-栈和队列
leetcode中关于栈和队列有关的的典型题目
leecode-树相关题目
leetcode中关于树的典型题目
leecode-链表相关题目题目
leecode中关于链表的题目QAQ