
工具使用
yasuotoko
这个作者很懒,什么都没留下…
展开
-
自己的一些git使用(git branch, git stash)
git git branch : :查看本地分支 - git branch :查看本地分支 - git branch -r :查看远程分支 - git branch -d 分支名 :删除本地分支 - git checkout 分支名 :checkout&nbs...原创 2019-04-22 13:37:56 · 222 阅读 · 0 评论 -
mvn使用
mvn 使用(clean,package,install) 最近在看netty的源码,用maven构建,出现了各种问题,记录下使用到的mvn的命令和一些基本使用。 mvn修改默认java版本: ${MAVEN_HOME}\conf\settings.xml <profile> <id>jdk18</id> <activat...原创 2019-04-27 21:44:59 · 265 阅读 · 0 评论 -
apache 各种有用的jar包
apache common io 后面再加吧原创 2019-04-29 23:51:46 · 621 阅读 · 0 评论 -
eclipse 快捷键
ALT+SHIFT+L 自动生成变量名 CTRL+2 选择快速填充 CTRL + 1 快速修复原创 2019-05-08 23:49:05 · 117 阅读 · 0 评论 -
maven搭建可自动部署到tomcat的Spring mvc 注释项目
start a web-app project from maven add the spring , javax-servlet dependencies of maven (the servlet’s scope is should be compile) add the plugin of maven-compiler-plugin,maven-war-pligun,tomcat7-mav...原创 2019-06-06 00:37:23 · 101 阅读 · 0 评论 -
mongoDB 安装 + 服务安装
下载 安装 手动启服务: 创建data文件夹+子目录data,log mongod -dbpath “E:\Work_App\MongoDB\Data\db” http://localhost:27017/ 验证是否启动成功 安装服务:mongod -dbpath “E:\Work_App\MongoDB\Data\db” -logpath “E:\Work_App\MongoDB...原创 2019-06-08 15:40:13 · 149 阅读 · 0 评论