摘要:
集群搭建 只有3台服务器,开始搭建mongodb集群里主要参照的是http://www.lanceyan.com/tech/arch/mongodb_shard1.html,端口的设置也是mongos为 20000, config server 为 21000, shard1为 22001 , sh 阅读全文
摘要:
ubuntu 14.04 desktop上安装vnc4server要装上gnome的一些软件包并修改启动文件~/.vnc/xstartup 问题来源How to make VNC Server work with ubuntu-desktop without xfce install these p 阅读全文
摘要:
Vundle is short for Vim bundle and is a Vim plugin manager. 从git上下载vundle $ git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle 阅读全文
摘要:
比如说清华大学的ipv6镜像源:https://mirrors.tuna.tsinghua.edu.cn/help/ubuntu/ /etc/apt/sources.list为包管理工具apt的软件包仓库配置文件,编辑完之后sudo apt-get update一下。对应的一条deb-src必须有d 阅读全文
摘要:
建立一个struts2 web应用程序 1. 创建一个基本的web应用程序 2. 添加struts2的jar文件到Class Path 将struts2的最小jar包拷到WEB-INF/lib目录,包括以下文件: 3. 为struts2添加Servlet Filter 只有在WEB-INF/web. 阅读全文
摘要:
servlet的过滤器夹在用户和servlet之间,可以截获并预处理或者打断{用户到servlet的请求或servlet到用户的响应},但本身并不能处理和响应用户请求。 filter类必须实现Filter接口的三个方法: init:在web应用程序启动时就根据web.xml中的配置来创建每个filt 阅读全文
摘要:
依赖注入(就是一个对象如何获取他所依赖的对象的引用,这个责任的反转。从这个对象内部的代码,转到了容器对组件进行装配和管理) 依赖获取 开放关闭原则(Open-Closed Principle) 让一个实体从依赖另一个实体转向依赖一个接口(Protocol-Object Principle) 一般实现 阅读全文
摘要:
Class类 首先,Class类里可以记载所有类的属性、方法等信息。这个也就是运行时类别标记,它记录了所有的对象(比如int,MyClass,void,数组等等)对应的类信息。 Class对象 JVM对于每个所使用的对象,都会有相应的Class对象与之对应,要么这种类型的Class对象已经创建好了, 阅读全文
摘要:
阅读目录 css3中与动画相关的标签 animation transition 与动画无关的transform 浏览器兼容 阅读目录 css3中与动画相关的标签 animation transition 与动画无关的transform 浏览器兼容 animation transition 与动画无关 阅读全文
摘要:
用法:git [--version] [--help] [-C ] [-c name=value] [--exec-path[=]] [--html-path] [--man-path] [--info-path] [-p|--paginate|--no-pager] [--no-replace-o... 阅读全文