本月博客排行
-
第1名
Xeden -
第2名
fantaxy025025 -
第3名
bosschen - paulwong
- johnsmith9th
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - gengyun12
- wy_19921005
- vipbooks
- e_e
- benladeng5225
- wallimn
- ranbuijj
- javashop
- jickcai
- fantaxy025025
- zw7534313
- qepwqnp
- robotmen
- 解宜然
- ssydxa219
- sam123456gz
- zysnba
- sichunli_030
- tanling8334
- arpenker
- gaojingsong
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- xyuma
- ganxueyun
- wangchen.ily
- xiangjie88
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- nychen2000
- zxq_2017
- lzyfn123
- wjianwei666
- forestqqqq
- ajinn
- siemens800
- hanbaohong
- 狂盗一枝梅
- java-007
- zhanjia
- 喧嚣求静
- Xeden
最新文章列表
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 ...