Launchpad ->其他 -> 钥匙串访问
http://www.jianshu.com/p/af1e98321574
Scala Eclipse建立scala Maven项目
先建一个普通的maven项目, 然后在项目上右键,configure, Add Scala Nature.
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!!
多个consumer使用同一个group.id消费同一个topic
只会有一个consumer能够读取到数据, 其它的consumer是无法消费到数据的. 谁要是知道怎么做,恳请告知!
Shell遍历目录下所有文件
1 | filelist=`ls /home/work/file/` |
一定要切记filelist=后边的那个引号不是单引号,而是tab键上边的那个键,或者说是1左边的那个键。否则的话不起作用。
转自http://blog.163.com/clevertanglei900@126/blog/static/111352259201162553652150
Hexo文章中插入图片
1 | 使用markdown写文章,插入图片的格式为![图片名称](链接地址),这里要说的是链接地址怎么写。 |
Elasticsearch查看type的mapping
使用以下方式查看elasticsearch中type的mapping1
GET /my_index/_mapping/my_type
详情请参考https://www.elastic.co/guide/en/elasticsearch/guide/current/mapping-intro.html#_viewing_the_mapping
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
- 创建分支
git branch v2
- 将分支同步到服务器
git push origin v2
- 切换分支
git checkout v2
- 修改v2分支上的文件
- 提交本地修改
git commit -am “v2修改"
- 将提交推送到服务器
git push origin v2 查看:v2内容修改, master文件不变
- 将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 | 1.先把项目备份,以防万一。 |