String threadFerryClassName = element.getAttribute("thread-ferry-class");
if (StringUtils.hasText(threadFerryClassName)) {
try {
Class<?> threadFerryClass = ClassUtils.forName(threadFerryClassName, getClass().getClassLoader());
if (!ClassUtils.isAssignable(ThreadFerry.class, threadFerryClass)) {
throw new RopException(threadFerryClassName + "没有实现" + ThreadFerry.class.getName() + "接口");
}
serviceRouterDef.getPropertyValues().addPropertyValue("threadFerryClass", threadFerryClass);
} catch (ClassNotFoundException e) {
throw new RopException(e);
}
}
//设置signEnable