| 程序包 | 说明 |
|---|---|
| org.springframework.core |
Provides basic classes for exception handling and version detection,
and other core helpers that are not specific to any part of the framework.
|
| 限定符和类型 | 方法和说明 |
|---|---|
static <T> Map<Method,T> |
MethodIntrospector.selectMethods(Class<?> targetType,
MethodIntrospector.MetadataLookup<T> metadataLookup)
方法实现说明:传入class对象,以及metadataLookup接口来获取我们标注了@RequestMapping的方法集合,存放在
Map中
|