本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- e_e
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- johnsmith9th
- forestqqqq
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
- jveqi
- java-007
- sunj
最新文章列表
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 ...