我在玩我的第一个基于SpringMVC的应用程序。。。。。(3.0.2.发布)
我注意到AnnotationMethodHandlerAdapter调用ServletHandlerMethodResolver的构造函数,而这个构造函数调用HandlerMethodResolver的init()方法。
public void init(Class<?> handlerType) {
Class<?>[] handlerTypes =
Proxy.isProxyClass(handlerType) ? handlerType.getInterfaces() : new Class<?>[] {handlerType};
for (final Class<?> currentHandlerType : handlerTypes) {
ReflectionUtils.doWithMethods(currentHandlerType, new ReflectionUtils.MethodCallback() {
public void doWith(Method method) {
Method specificMethod = ClassUtils.getMostSpecificMethod(method, currentHandlerType);
if (isHandlerMethod(method)) {
handlerMethods.add(specificMethod);
}
else if (method.isAnnotationPresent(InitBinder.class)) {
initBinderMethods.add(specificMethod);
}
else if (method.isAnnotationPresent(ModelAttribute.class)) {
modelAttributeMethods.add(specificMethod);
}
}
}, ReflectionUtils.NON_BRIDGED_METHODS);
}
这个init()方法(借助ReflectionUtils.doWithMethods())在
-指定类别和
-所有的超类
!!!
我们不应该(也不能)在对象类的方法上“放置”这样的注释。那么,为什么init()扫描对象类的方法呢?请澄清!
Back Link