本月博客排行
-
第1名
kaizi1992 -
第2名
arpenker -
第3名
wy_19921005 - hanbaohong
- jh108020
年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
青否云后端云 - vipbooks
- wy_19921005
- benladeng5225
- fantaxy025025
- e_e
- kaizi1992
- tanling8334
- arpenker
- sam123456gz
- javashop
- zysnba
- xiangjie88
- lemonhandsome
- wallimn
- ganxueyun
- Xeden
- xyuma
- zhanjia
- wangchen.ily
- jh108020
- johnsmith9th
- zxq_2017
- jbosscn
- forestqqqq
- daizj
- ajinn
- xpenxpen
- ranbuijj
- 喧嚣求静
- kingwell.leng
- silverend
- kristy_yy
- lchb139128
- jveqi
- lich0079
- lzyfn123
- java-007
- sunj
- yeluowuhen
- lerf
- xiaoxinye
- flashsing123
- zhangjijun
- lxguy
- bosschen
- lyndon.lin
- sunnylocus
最新文章列表
myeclipse Resource is out of sync with the file system
myeclipse 没有响应了,非法关闭,再打开的时候,上次修改的一个类,打不开了,打开的时候提示
Resource is out of sync with the file system
但是通过System Editor打开后还是能看到代码的
这是因为文件系统不同步造成的
可以直接在类上按F5刷新
也可以设置myeclipse自动刷新
Window->Preferences->G ...
使用sync进行服务器文件同步,并CRON定期执行
一、创建sync.sh shell文件
#!/bin/sh
cd /tmp
if test -e ./afpsync.pid
then
exit
else
touch ./afpsync.pid
/usr/bin/rsync -uvrtopg --delete --exclude-from "/home/no-rsync" 数据源IP::目录 /home/web ...