摘要: 1. 前端控制器 DispatcherServlet 接收消息 转发结果,相当于转发器 2.处理器映射器 HandlerMapping 获取 HandlerExecutionChain (包含一个处理器 多个拦截器HandlerInterceptor ) 根据请求url查找HandlerAdapte 阅读全文
posted @ 2017-04-13 23:27 cnchengv 阅读(94) 评论(0) 推荐(0)
摘要: http://www.cnblogs.com/ITtangtang/p/3978102.html 阅读全文
posted @ 2017-04-13 20:05 cnchengv 阅读(67) 评论(0) 推荐(0)
摘要: // 使用 BufferedReader 在控制台读取字符import java.io.*;public class BRReadLines { public static void main(String args[]) throws IOException { // 使用 System.in 创 阅读全文
posted @ 2017-04-13 20:00 cnchengv 阅读(76) 评论(0) 推荐(0)
摘要: package algorithm; import java.util.Stack; public class BinTree { private char c; private BinTree lchild; private BinTree rchild; public BinTree(char tc){ c = tc; } public static void... 阅读全文
posted @ 2017-04-13 19:35 cnchengv 阅读(82) 评论(0) 推荐(0)
摘要: http://blog.csdn.net/itmyhome1990/article/details/9132929 阅读全文
posted @ 2017-04-13 19:13 cnchengv 阅读(104) 评论(0) 推荐(0)