Java 类org.springframework.web.servlet.mvc.multiaction.MethodNameResolver 实例源码

项目:spring4-understanding    文件:AnnotationMethodHandlerAdapter.java   
/**
 * Set the MethodNameResolver to use for resolving default handler methods
 * (carrying an empty {@code @RequestMapping} annotation).
 * <p>Will only kick in when the handler method cannot be resolved uniquely
 * through the annotation metadata already.
 */
public void setMethodNameResolver(MethodNameResolver methodNameResolver) {
    this.methodNameResolver = methodNameResolver;
}
项目:class-guard    文件:AnnotationMethodHandlerAdapter.java   
/**
 * Set the MethodNameResolver to use for resolving default handler methods
 * (carrying an empty {@code @RequestMapping} annotation).
 * <p>Will only kick in when the handler method cannot be resolved uniquely
 * through the annotation metadata already.
 */
public void setMethodNameResolver(MethodNameResolver methodNameResolver) {
    this.methodNameResolver = methodNameResolver;
}
项目:jresplus    文件:ExtendableAnnotationMethodHandlerAdapter.java   
/**
 * Set the MethodNameResolver to use for resolving default handler methods
 * (carrying an empty <code>@RequestMapping</code> annotation).
 * <p>
 * Will only kick in when the handler method cannot be resolved uniquely
 * through the annotation metadata already.
 */
public void setMethodNameResolver(MethodNameResolver methodNameResolver) {
    this.methodNameResolver = methodNameResolver;
}