String beanName = uiAnn.value();
scripts.add(f.getAbsolutePath());
registerBean(beanName, f, "conversation");
}
UIController cntAnn = AnnotationUtils.findAnnotation(clazz, UIController.class);
if (cntAnn != null) {
String beanName = cntAnn.value();
scripts.add(f.getAbsolutePath());
registerBean(beanName, f, "conversation");
}