Bootstrap

1.栅格系统 总共12列,col-xs-6 col-sm-3 col-md(超小屏幕,小,中等)占的列宽 <div class="page-header"> <h1> ...

Vim实用技巧

Vim实用技巧——持续更新 普通模式 u undo reundo 操作符+动作命令=操作 操作符单独不可用,像c(change)、d(delete)、y(复制),:h operator可以查看所有的有限操作符;: h :map-operator查看如何自定义操作符 ...

Tomcat

Tomcat—持续更新 组成 Server:指的就是整个 Tomcat 服 务器,包含多组服务,负责管理和 启动各个 Service,同时监听 8005 端口发过来的 shutdown 命令,用 于关闭整个容器 ; Service: ...

Spring注解

感谢 spring中文文档 注解 获取容器(上下文) public static void main(String[] args) { ApplicationContext ctx = new AnnotationConfigApplicationContext(AppConfig. class); MyService myService = ctx. ...

spring过滤器

Servlet容器与Tomcat Tomcat 的容器等级中,Context 容器是直接管理 Servlet 在容器中的包装类 Wrapper,所以 Context 容器如何运行将直接影响 Servlet 的工作方式(一个 Context容器对应一个 Web 应用(工程),也就是Servlet 运行时的 ...