<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Mvc on 知识铺的博客</title>
    <link>https://index.zshipu.com/geek/tags/mvc/</link>
    <description>Recent content in Mvc on 知识铺的博客</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>zh-CN</language>
    <lastBuildDate>Wed, 06 Mar 2024 13:28:00 +0000</lastBuildDate>
    <atom:link href="https://index.zshipu.com/geek/tags/mvc/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Spring-mvc-MappingRegistry</title>
      <link>https://index.zshipu.com/geek/post/code/docs/Spring/mvc/Spring-mvc-MappingRegistry/</link>
      <pubDate>Wed, 06 Mar 2024 13:28:00 +0000</pubDate>
      <guid>https://index.zshipu.com/geek/post/code/docs/Spring/mvc/Spring-mvc-MappingRegistry/</guid>
      <description>MappingRegistry Author: HuiFer 源码阅读仓库: SourceHot-spring 源码路径: org.springframework.jms.annotation.EnableJms 类全路径 org.springframework.web.servlet.handler.AbstractHandlerMethodMapping.MappingRegistry 基本属性 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 class MappingRegistry { /** * key:mapping * value: mapping registration */ private final Map&amp;lt;T, MappingRegistration&amp;lt;T&amp;gt;&amp;gt; registry = new HashMap&amp;lt;&amp;gt;(); /** * key: mapping * value: handlerMethod */ private final Map&amp;lt;T, HandlerMethod&amp;gt; mappingLookup = new LinkedHashMap&amp;lt;&amp;gt;(); /** * key: url * value: list mapping */ private final MultiValueMap&amp;lt;String, T&amp;gt; urlLookup = new LinkedMultiValueMap&amp;lt;&amp;gt;(); /** * key: name * value: handler method */ private final Map&amp;lt;String, List&amp;lt;HandlerMethod&amp;gt;&amp;gt; nameLookup = new ConcurrentHashMap&amp;lt;&amp;gt;(); /** * key:handler method * value: 跨域</description>
    </item>
    <item>
      <title>Spring-MVC-HandlerMapping</title>
      <link>https://index.zshipu.com/geek/post/code/docs/Spring/mvc/Spring-MVC-HandlerMapping/</link>
      <pubDate>Wed, 06 Mar 2024 13:27:00 +0000</pubDate>
      <guid>https://index.zshipu.com/geek/post/code/docs/Spring/mvc/Spring-MVC-HandlerMapping/</guid>
      <description>Spring HandlerMapping Author: HuiFer 源码阅读仓库: SourceHot-spring 源码路径: org.springframework.jms.annotation.EnableJms org.springframework.web.servlet.HandlerMapping HandlerMapping 处理映射关系, 通过请求转换成对象HandlerExecutionChain 1 2 3 4 public interface HandlerMapping { HandlerExecutionChain getHandler(HttpServletRequest request) throws Exception; // 其他静态变量省略 } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 @Override @Nullable public final HandlerExecutionChain getHandler(HttpServletRequest request) throws Exception { // 转换成handler Object handler</description>
    </item>
  </channel>
</rss>
