fix: update index.html

pull/44/head
yanglbme 5 years ago
parent 6de4b851d8
commit 97f35b104b

@ -1,6 +1,5 @@
# 互联网公司常用框架源码赏析 # 互联网公司常用框架源码赏析
[![license](https://badgen.net/github/license/doocs/source-code-hunter?color=green)](https://github.com/doocs/source-code-hunter/blob/master/LICENSE) [![license](https://badgen.net/github/license/doocs/source-code-hunter?color=green)](https://github.com/doocs/source-code-hunter/blob/master/LICENSE)
[![PRs Welcome](https://badgen.net/badge/PRs/welcome/green)](http://makeapullrequest.com)
[![stars](https://badgen.net/github/stars/doocs/source-code-hunter)](https://github.com/doocs/source-code-hunter/stargazers) [![stars](https://badgen.net/github/stars/doocs/source-code-hunter)](https://github.com/doocs/source-code-hunter/stargazers)
[![contributors](https://badgen.net/github/contributors/doocs/source-code-hunter)](https://github.com/doocs/source-code-hunter/graphs/contributors) [![contributors](https://badgen.net/github/contributors/doocs/source-code-hunter)](https://github.com/doocs/source-code-hunter/graphs/contributors)
[![help-wanted](https://badgen.net/github/label-issues/doocs/source-code-hunter/help%20wanted/open)](https://github.com/doocs/source-code-hunter/labels/help%20wanted) [![help-wanted](https://badgen.net/github/label-issues/doocs/source-code-hunter/help%20wanted/open)](https://github.com/doocs/source-code-hunter/labels/help%20wanted)

@ -20,11 +20,6 @@ public class ParamNameResolver {
* the parameter index is used. Note that this index could be different from the actual index * the parameter index is used. Note that this index could be different from the actual index
* when the method has special parameters (i.e. {@link RowBounds} or {@link ResultHandler}). * when the method has special parameters (i.e. {@link RowBounds} or {@link ResultHandler}).
* </p> * </p>
* <ul>
* <li>aMethod(@Param("M") int a, @Param("N") int b) -&gt; {{0, "M"}, {1, "N"}}</li>
* <li>aMethod(int a, int b) -&gt; {{0, "0"}, {1, "1"}}</li>
* <li>aMethod(int a, RowBounds rb, int b) -&gt; {{0, "0"}, {2, "1"}}</li>
* </ul>
* *
* {@link ParamNameResolver#ParamNameResolver(org.apache.ibatis.session.Configuration, java.lang.reflect.Method)} 中的map 变量值转换而得 * {@link ParamNameResolver#ParamNameResolver(org.apache.ibatis.session.Configuration, java.lang.reflect.Method)} 中的map 变量值转换而得
* {参数索引: 参数名称(arg0,Param注解的value)} * {参数索引: 参数名称(arg0,Param注解的value)}

@ -17,21 +17,17 @@
<ul> <ul>
<li>分类 <li>分类
<ul> <ul>
<li><a href="#/?id=Spring系列">Spring系列</a></li> <li><a href="#/?id=spring-系列">Spring系列</a></li>
<li><a href="#/?id=Mybatis">Mybatis</a></li> <li><a href="#/?id=mybatis">Mybatis</a></li>
<li><a href="#/?id=Netty">Netty</a></li> <li><a href="#/?id=netty">Netty</a></li>
<li><a href="#/?id=Tomcat">Tomcat</a></li> <li><a href="#/?id=tomcat">Tomcat</a></li>
<li><a href="#/?id=JDK 1.8">JDK 1.8</a></li> <li><a href="#/?id=番外篇jdk-18">JDK 1.8</a></li>
<li><a href="#/?id=学习心得">学习心得</a></li> <li><a href="#/?id=学习心得">学习心得</a></li>
<li><a href="#/docs/from-readers/README">读者说</a></li>
</ul> </ul>
</li> </li>
<li>页面 <li>页面
<ul> <ul>
<li><a href="#">封面</a></li>
<li><a href="#/README">首页</a></li> <li><a href="#/README">首页</a></li>
<li><a href="#/docs/extra-page/advanced">进阶</a></li>
<li><a href="#/docs/extra-page/offer">Offer</a></li>
<li><a href="https://github.com/doocs" target="_blank">Doocs</a></li> <li><a href="https://github.com/doocs" target="_blank">Doocs</a></li>
<li><a href="https://github.com/AmyliaY" target="_blank">Author</a></li> <li><a href="https://github.com/AmyliaY" target="_blank">Author</a></li>
</ul> </ul>
@ -45,8 +41,6 @@
name: 'source-code-hunter', name: 'source-code-hunter',
maxLevel: 3, maxLevel: 3,
auto2top: true, auto2top: true,
coverpage: true,
coverpage: 'docs/extra-page/cover.md',
search: [ search: [
'/' '/'
], ],

Loading…
Cancel
Save