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

commons.box.app.MetaBeanFactory Maven / Gradle / Ivy

The newest version!
package commons.box.app;

import javax.annotation.Nullable;

/**
 * 获取 MetaBean Config
 * 

* 实例需要通过 java 标准 services 注册 */ public interface MetaBeanFactory { /** * 根据 key 获取配置,如果未找到实例需要返回空以便向后续 factory 继续查找定义的实例 * * @param key * @return */ @Nullable public MetaBeanConfig config(String key); /** * 重新载入当前的 config 配置 同时在此也可以进行初始化操作 此时需确保构造函数也同时调用了 reload() 方法 */ public void reload(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy