年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
wy_19921005 - 青否云后端云
- benladeng5225
- vipbooks
- kaizi1992
- e_e
- arpenker
- tanling8334
- sam123456gz
- zysnba
- fantaxy025025
- xiangjie88
- lemonhandsome
- wallimn
- ganxueyun
- Xeden
- zhanjia
- wangchen.ily
- xyuma
- jh108020
- johnsmith9th
- zxq_2017
- jbosscn
- forestqqqq
- daizj
- ajinn
- xpenxpen
- 喧嚣求静
- silverend
- kingwell.leng
- kristy_yy
- lchb139128
- jveqi
- lzyfn123
- javashop
- java-007
- sunj
- yeluowuhen
- lerf
- xiaoxinye
- flashsing123
- chenqisdfx
- bosschen
- zhangjijun
- lyndon.lin
- sunnylocus
- lyj86
- paulwong
最新文章列表
unauthenticated user
blog迁移至
:http://www.micmiu.com
今天写了个简单连接数据库的程序,在远程连接mysql 时发现明显慢,后来登录mysql后查看当前连接情况,命令如下:
mysql>show processlist;
发现大量的unauthenticated user信息,如下图:
经搜索知道是因为mysql开启了反向域名解析的功能。
...
JAVA线程池ThreadPoolExecutor
blog迁移至:http://www.micmiu.com
java.util.concurrent.ThreadPoolExecutor相关基础介绍和使用示例。
[ 一 ]、常用线程池
最常用构造方法为:
ThreadPoolExecutor(int corePoolSize,
int maximumPoolSize,
...
@Override must override a superclass method
blog迁移至:http://www.micmiu.com
在用Eclipse开发Java项目时,@Override 注解时会出现以下错误提示:
The method *** of type *** must override a superclass method
主要是因为该项目的Compiler comliance level的值设置不正确造成的,5.0是不支持@Override等 ...