摘要: /** * Create a httpClient instance * * @param isSSL * @return HttpClient instance */ public static HttpClient getClient(boolean isSSL) { HttpCl... 阅读全文
posted @ 2015-11-04 17:12 wxqi528 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 最近想研究下公司用的dubbo结果发现不是想象中的那么简单,已经停止维护好长时间了,哎。。。这里推荐用dubbox 比较简单 ,也属于dubbo的升级版这个简单介绍只是方便大家运行了解dubbo以及rest功能步骤如下:git clone https://github.com/dangdangdot... 阅读全文
posted @ 2015-07-13 17:52 wxqi528 阅读(578) 评论(0) 推荐(0) 编辑
摘要: --相当于建了个e临时表with e as (select * from scott.emp e where e.empno=7499)select * from e;minus 取差集 可以替换(not in | in )select id from order minus select orde... 阅读全文
posted @ 2015-07-13 14:12 wxqi528 阅读(129) 评论(0) 推荐(0) 编辑
摘要: ```explain plan for select * from sys_user;SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY(NULL, NULL, 'ADVANCED -PROJECTION'));``` 阅读全文
posted @ 2015-07-08 11:02 wxqi528 阅读(142) 评论(0) 推荐(0) 编辑
摘要: /** * 匹配字符串中有多少个中文 * wangxq 2015年7月1日 16:18:52 * @param recordStr * @return */``` public Integer parseRecordStr(String record... 阅读全文
posted @ 2015-07-06 10:58 wxqi528 阅读(380) 评论(0) 推荐(0) 编辑
摘要: request.getSession().getServletContext().getRealPath("xxxx").replace("\\", "/"); 阅读全文
posted @ 2015-05-13 09:53 wxqi528 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 首先理解下什么是 git github gitlab gitosisgitolite,当时让我搭建git 蒙了好长时间最后才明白. (1)yum install git-core(2)yum install openssh-server (3) yum install openssh-clie... 阅读全文
posted @ 2015-02-07 13:09 wxqi528 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 由于公司使用的框架版本比较久,需要将现有的框架进行升级。项目使用最新版本的struts/spring/hibernate,并使用最新版本的jdk 1.7和最新的tomcat 7。 在项目的classpath中加入spring的最新版本3.2相关的jar包,并且安装好jdk 1.7,配置好相关的环... 阅读全文
posted @ 2014-12-10 11:52 wxqi528 阅读(323) 评论(0) 推荐(0) 编辑
摘要: ***************备机******************************server-id=2log-bin=log_name master-host=xxx.xxx.xxx.xxx #主机A的地址master-user=xxx #主机A提供... 阅读全文
posted @ 2014-11-21 11:02 wxqi528 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 1. yum -y install subversion2. cd /usr/local/svn/ (1)svnserve --version #查询svn版本 (2)svnadmin create /opt/svn/test#这里是你svn的仓库地... 阅读全文
posted @ 2014-10-29 20:27 wxqi528 阅读(142) 评论(0) 推荐(0) 编辑