
javaweb
Rogers1998
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
查找占用本机端口的应用PID
win+R->cmd->输入 netstat -ano 或netstat -an | grep 8080 命令,可以查看哪个进程占用了8080和8009端口,找到占用端口软件的PID,然后在任务管理器找到对应PID的软件,关闭结束该进程即可。如果任务管理器中没有显示PID列,需要设置,查看--->选择列--->勾选“PID(进程标识符)”。 这里我要解决的是tom...转载 2018-11-29 10:25:32 · 410 阅读 · 0 评论 -
mysql bigint和timestamp互转
1、bigint类型转换为datetime类型 //假设mysql里存储的时间数据为1543924144 mysql> select from_unixtime(1543924144); 2、datetime类型转换为bigint类型 mysql> select UNIX_TIMESTAMP(now()); 原文地址:http://lbyzx123.iteye...原创 2018-12-05 00:29:12 · 8386 阅读 · 0 评论 -
The server time zone value '???ú±ê×??±??' is unrecognized or represents more than one time zone.
报错内容: com.mysql.cj.exceptions.InvalidConnectionAttributeException:The server time zone value '???ú±ê×??±??' is unrecognized or represents more than one time zone. You must configure either the serve...原创 2018-11-27 19:59:17 · 2913 阅读 · 1 评论 -
Unknown initial character set index '255' received from server. 解决方法
报错内容: Unknown initial character set index '255' received from server. Initial client character set can be forced via the 'characterEncoding' property. 分析: 数据库驱动包编码与页面不匹配 解决方法: 有两种解决方法, 根据自己项目选择...原创 2018-11-27 20:26:07 · 8878 阅读 · 11 评论