}
}
final Class<?> clazz = beanDefinition.getBeanClass();
final String controllerName = StringUtils.removeEnd(ClassUtils
.getShortNameAsProperty(clazz), controllerSuffix);
Path reqMappingAnnotation = clazz.getAnnotation(Path.class);
if (reqMappingAnnotation != null) {
controllerPaths = reqMappingAnnotation.value();
}
if (controllerPaths != null) {
// 如果controllerPaths.length==0,表示没有任何path可以映射到这个controller了
for (int i = 0; i < controllerPaths.length; i++) {
if ("#".equals(controllerPaths[i])) {