摘要: /* * Copyright 2002-2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * ... 阅读全文
posted @ 2017-07-12 16:29 一口毒苹果 阅读(1432) 评论(0) 推荐(0) 编辑
摘要: /* * Copyright 2002-2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * ... 阅读全文
posted @ 2017-07-12 16:27 一口毒苹果 阅读(1337) 评论(0) 推荐(0) 编辑
摘要: /* * Copyright 2002-2012 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * ... 阅读全文
posted @ 2017-07-12 16:26 一口毒苹果 阅读(302) 评论(0) 推荐(0) 编辑
摘要: Redis 的安装与使用(单节点) IP:192.168.4.111 环境:CentOS 6.6 Redis 版本:redis-3.0 (考虑到 Redis3.0 在集群和性能提升方面的特性,rc 版为正式版的候选版,而且 很快就出正式版) 安装目录:/usr/local/redis 用户:root 阅读全文
posted @ 2017-07-07 11:11 一口毒苹果 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 持续集成篇 SonarQube 代码质量管理平台的安装 1、SonarQube的介绍 SonarQube是一个管理代码质量的开放平台。 可以从七个维度检测代码质量(为什么要用SonarQube): (1) 复杂度分布(complexity):代码复杂度过高将难以理解、难以维护 (2) 重复代码(du 阅读全文
posted @ 2017-06-29 15:37 一口毒苹果 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 持续集成管理平台的组成与工作原理图 如果构建的Maven项目本地仓库没有对应的依赖包,那么就会去Nexus私服去下载, 那么如果Nexus私服也没有此依赖包,就回去远程中央仓库下载依赖, Nexus私服下载成功后再下载至本地Maven库供项目引用。 1、Maven私服器Sonatype Nexus的 阅读全文
posted @ 2017-06-29 10:18 一口毒苹果 阅读(717) 评论(0) 推荐(0) 编辑
摘要: 将本地项目通过git管理: cd 项目路径,执行: git init 会在项目路径下生成.git目录,进入后 会看到新生成的文件和目录: wangxiaodeMacBook-Pro:.git wangxiao$ ls HEAD config description hooks info object 阅读全文
posted @ 2017-06-27 16:33 一口毒苹果 阅读(362) 评论(0) 推荐(0) 编辑
摘要: SVN 版本管理系统的安装 CentOS + Subversion + Apache + Jsvnadmin CI 服务器:192.168.x.xxx root 用户操作 建议安装前更新操作系统 # yum update ,若不能正常更新,请参考上一篇文章。 更新完成后重启 # reboot 安装 阅读全文
posted @ 2017-06-27 15:57 一口毒苹果 阅读(603) 评论(0) 推荐(0) 编辑
摘要: Linux服务器执行yum update报错提示: Loaded plugins: fastestmirror, refresh-packagekit, security You need to be root to perform this command. Centons下其大概意思是faste 阅读全文
posted @ 2017-06-27 15:51 一口毒苹果 阅读(5383) 评论(0) 推荐(0) 编辑
摘要: 使用Maven构建Dubbo服务的可执行jar包Dubbo服务的运行方式:1、使用Servlet容器运行(Tomcat、Jetty等) 不可取缺点: 增加复杂性(端口、管理) 浪费资源(内存)2、自建Main方法类来运行(Spring容器) 不建议(本地调试可用)缺点: Dubbo本身提供的高级特性 阅读全文
posted @ 2017-06-27 14:02 一口毒苹果 阅读(236) 评论(0) 推荐(0) 编辑