Your Name
2023-03-24 7330728153970cb96e8ae90fa816516079e978c6
java110-doc/src/main/java/com/java110/doc/registrar/Java110CmdDocDiscoveryRegistrar.java
@@ -102,13 +102,8 @@
                    String beanName = getListenerName(attributes, beanDefinition);
                    CmdDocDto cmdDocDto = new CmdDocDto();
                    Class<?> clazz = null;
                    try {
                        clazz = Class.forName(beanDefinition.getBeanClassName());
                    } catch (ClassNotFoundException e) {
                        throw new RuntimeException(e);
                    }
                    cmdDocDto.setCmdClass(clazz);
                    cmdDocDto.setCmdClass(beanDefinition.getBeanClassName());
                    cmdDocDto.setDescription(attributes.get("description").toString());
                    cmdDocDto.setAuthor(attributes.get("author").toString());
                    cmdDocDto.setResource(attributes.get("resource").toString());
@@ -117,6 +112,7 @@
                    cmdDocDto.setVersion(attributes.get("version").toString());
                    cmdDocDto.setHttpMethod(attributes.get("httpMethod").toString());
                    cmdDocDto.setServiceCode(attributes.get("serviceCode").toString());
                    cmdDocDto.setSeq(Integer.parseInt(attributes.get("seq").toString()));
                    /*BeanDefinitionHolder definitionHolder = new BeanDefinitionHolder(beanDefinition, beanName);