Could Not Calculate Build Plan

参考http://stackoverflow.com/questions/12533885/could-not-calculate-build-plan-plugin-org-apache-maven-pluginsmaven-resources
Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved

I had the exact same problem and since I read somewhere that the error was caused by a cached file, I fixed it by deleting all the files under de .m2 repository folder. The next time I built the project I had to download all the dependencies again but it was worth it - 0 errors!!

多个程序向同一个Kafka Topic写入数据

经测试, 在多个程序同时向同一个kafka topic中写入数据, 不会出现数据冲突或者丢失的情况.

测试数据:
向kafka中写数据

program instance 1 : 10000条数据
program instance 2 : 10000条数据
program instance 3 : 10000条数据

同时启动上述3个程序, 程序每次写完一条数据,sleep 50ms.

从kafka中读取数据

共读取到30000条数据

结论

在多个程序同时向同一个kafka topic中写入数据, 不会出现数据冲突或者丢失的情况.

Hexo文章中插入图片

1
2
3
4
使用markdown写文章,插入图片的格式为![图片名称](链接地址),这里要说的是链接地址怎么写。
对于hexo,有两种方式:
使用本地路径:在hexo/source目录下新建一个img文件夹,将图片放入该文件夹下,插入图片时链接即为/img/图片名称。
使用微博图床,地址http://weibotuchuang.sinaapp.com/,将图片拖入区域中,会生成图片的URL,这就是链接地址。

Git的使用

git查看远程仓库地址

1
git remote -v

创建项目:在github上创建一个项目test

  • git配置

    git config --global user.name “WangJunbo"
    git config —global user.email “11@q.com"
    
  • 下载代码

    git clone “https://github.com/xiaowang/test.git"
    
  • 添加文件
    git add news.txt
    git add .  //添加全部修改或新增的文件
    
  • 本地提交
    git commit -am “提交测试代码"
    
  • 将提交推送到远程服务器
    git push origin master
    
  • 修改本地文件
    vim news.txt
    
  • 提交修改
    git commit -an “提交修改"
    
  • 将提交推送到远程服务器
    git push
    
  • 更新本地代码
    git pull
    
  • 删除目录
    git rm --cached news.txt
    git commit -m '删除news.txt'
    git push origin master
    

其它

git remote add origin https://github.com/xiaoming/maple.git

  1. 创建分支
    git branch v2
    
  2. 将分支同步到服务器
    git push origin v2
    
  3. 切换分支
    git checkout v2
    
  4. 修改v2分支上的文件
  5. 提交本地修改
    git commit -am “v2修改"
    
  6. 将提交推送到服务器
    git push origin v2
    查看:v2内容修改, master文件不变
    
  7. 将v2分支合并到主干
    git checkout master
    git merge v2
    git push
    
  • 版本还原
    git checkout v2
    git revert HEAD
    填写描述信息
    查看本地文件内容是否修改
    git push origin v2
    
  • 还原到指定版本

在已经存在的文件夹中使用git

git init
git add . 
git commit -am '初始化messageController2'
git remote add origin 
http://boom.qctt.cn:1234/wangjunbo/messagecontroller2.git
git push -u origin master

Git 提示fatal: remote origin already exists 错误解决办法

1、先删除远程 Git 仓库

1
$ git remote rm origin

2、再添加远程 Git 仓库

1
$ git remote add origin git@github.com:FBing/java-code-generator

git 忽略已经被提交的文件

1
2
3
4
5
1.先把项目备份,以防万一。
2.git rm --cached app.iml //从版本库中rm 文件,working dicrectory中仍然保留,如果要删除目录下所有文件包括子目录中的 git rm -r --cached directory_name
3.在.gitignore中添加要忽略的文件
4.把修改的文件commit并且push到服务端
5.从git上重新拉取这个项目。