
开发工具
jimmy_游戏人生
热爱技术,为专研技术可以废寝忘食。
展开
-
持续集成工具
基于 Jenkins 快速搭建持续集成环境http://www.ibm.com/developerworks/cn/java/j-lo-jenkins/index.html原创 2013-11-18 10:12:19 · 846 阅读 · 0 评论 -
maven 指定pom.xml 启动
在开发的过程中,有时候想要在pom.xml里配置个性化的服务,但又不想提交到代码库,方便起见,我们可以自定义pom_own.xml . 这个时候,在mvn启动的时候,用 mvn -f pom_own.xml启动就行了。原创 2016-11-30 13:08:26 · 18537 阅读 · 1 评论 -
maven 内嵌tomcat 开发web 系统
web 项目的pom.xml中添加下面的插件: org.apache.tomcat.maven tomcat7-maven-plugin 2.2原创 2016-11-07 14:37:09 · 2415 阅读 · 0 评论 -
phpmyadmin4.1.2 让blob 字段显示出来
修改confi.inc.php 文件# Show 1000 rows instead of 30 by default$cfg['MaxRows'] = 1000;# Show BLOB data as a string not hex.$cfg['DisplayBinaryAsHex'] = false;# Show BLOB data in row detail pages.原创 2013-12-26 17:11:41 · 1427 阅读 · 0 评论 -
我心中的vi 编辑神器
使用vi 开发软件,已经快三年多了,在三年期间,有辛酸,有痛楚,有纠结,更有收获。在这之前,也有使用过vi编辑器,那个时候,只用了vi的几个基本的命令,如yy,dd之类的。更多的时候,是项目要上线了,到linux上修改配置文件,偶尔用一用。 还记得2010年的时候,我在客户那边用java开发一套管理系统,编译器当然是用的明星级的eclipse。到了项目上线的时候,我的老大,要到线上部署环原创 2013-11-19 11:15:46 · 3564 阅读 · 35 评论 -
elcipse key assist
elcipse key assistshow occurrences ctrl + shift + Ushowctrl + 方向键 ,光标以单词为单位移动原创 2013-11-18 10:15:02 · 779 阅读 · 0 评论 -
eclipse tab replace 4 space.
first:set the 4 space for tab.1.preferences--editor-text editor - inserts spaces for tabs.2. preferences-java-code style - formate - edit - tab policy------space onlysecond: set the unix原创 2013-11-18 10:14:38 · 991 阅读 · 0 评论 -
ant ssh remote
You need to do 3 things:get jsch.jar from http://www.jcraft.com/jsch/place it in the ant folder as indicated in the erroradd the jar to the ant classpath in Eclipse Window/Preferences/Ant/Runtim原创 2013-11-18 10:14:06 · 905 阅读 · 0 评论 -
cvs丢失版本信息
如果遇到 cvs 丢失了版本信息,用以下命令 cvs update -d -P原创 2013-11-18 10:10:52 · 927 阅读 · 0 评论 -
eclipse 插件 Link安装插件
关键字: link安装插件 eclispe想必大家都很熟悉了,一般来说,eclipse插件都是安装在plugins目录下。不过这样一来,当安装了许多插件之后,eclipse变的很大,最主要的是不便于更新和管理众多插件。用links方式安装eclipse插件,可以解决这个问题。 当前配置XP SP1,eclipse3.0.1 现在假设我的eclipse安装目录原创 2013-11-18 10:15:33 · 806 阅读 · 0 评论 -
ant show the numbers when the system occour exception
<javac srcdir="src" destdir="target/classes" debug="true" debuglevel="lines,vars,source"> ... lines,vars,source一定不能有空格。原创 2013-11-18 10:13:07 · 855 阅读 · 0 评论 -
change svn username
Linux下删除上次SVN登录的用户名密码rm ~/.subversion/auth/svn.simple/*原创 2013-11-18 10:12:57 · 1237 阅读 · 0 评论 -
git 的简单使用教程
git 对开发人员来说并不陌生。本文以简短的方式,把git 常用的命令加以说明,以方式大家对git的学习,本文秉着以极简的方式,介绍git. 1. git 提交代码并push到远程 git commit -am “git log” git push 2. 创建+切换分支 git branch -b new原创 2016-11-15 11:02:45 · 299 阅读 · 0 评论