All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adrninistrator.javacg.extensions.codeparser.SpringXmlBeanParserInterface Maven / Gradle / Ivy

package com.adrninistrator.javacg.extensions.codeparser;

import java.util.Map;

/**
 * @author adrninistrator
 * @date 2023/3/13
 * @description: 对Spring XML文件中的bean解析的接口
 */
public interface SpringXmlBeanParserInterface extends JarEntryOtherFileParser {

    /**
     * 根据Spring Bean的id获取对应的类名
     *
     * @param beanId
     * @return
     */
    String getBeanClass(String beanId);

    /**
     * 获取Spring Bean对应的Map
     * key Bean名称
     * value Bean的类名
     *
     * @return
     */
    Map getBeanMap();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy