spring mvc 的初始化

spring 及 springMVC 在 web项目中的配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>

<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<!-- Processes application requests -->
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
<async-supported>true</async-supported>
</servlet>

阅读全文

spring context component-scan 实现

内部解析类

spring 使用以下标签可以实现组件(bean)的自动扫描和注册

<context:component-scan base-package="org.package.samples" />

阅读全文

mysql

mysql 相关操作

忘记密码

    阅读全文

    kafka启动过程

    kafka.Kafka

    通过 kafka 的启动脚本可知,kafka server 的启动由 kafka.Kafka 类的完成。核心代码如下:

    阅读全文

    zookeeper

    1. zookeeper简介

    zookeeper 进行集群的目地是提供高可用的服务。

    znode: org.apache.zookeeper.server.DataNode

    阅读全文

    配置vim

    安装 vundle

    1. 下载

      1
      git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

    阅读全文

    win提升效率

    遇到的问题

    1. 使用hexo 写博文,使用 hexo n 命令之后,不会打开写作软件

    快速搭建终端环境

      阅读全文

      kafka log文件格式

      topic存储位置

      broker在启动的时候会,配置这个broker产生的topic的存储位置,kafka默认的配置在 server.properties 文件中:

      1
      2
      # A comma seperated list of directories under which to store log files
      log.dirs=/tmp/kafka-logs

      阅读全文

      kafka

      kafka简介

      introduction

      kafka: apache 旗下的一个项目

      阅读全文

      kafka-api

      kafka api

      kafka 提供的 client api 共有3种,这三种也是随着 kafka 版本升级不断演进的。
      前两种是 使用 scala 编写的api,
      在 kafka

      阅读全文