return handlerMatcher.matches( ClassUtils.getUserClass( beanType ) );
}
@Override
protected RequestMappingInfo getMappingForMethod( Method method, Class<?> handlerType ) {
RequestMappingInfo info = super.getMappingForMethod( method, handlerType );
if ( info != null && prefixPath != null ) {
RequestMappingInfo other = new RequestMappingInfo( new PatternsRequestCondition( prefixPath ),
new RequestMethodsRequestCondition(),
new ParamsRequestCondition(),
new HeadersRequestCondition(),
new ConsumesRequestCondition(),
new ProducesRequestCondition(), null );
info = other.combine( info );
}
return info;
}