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

cn.zhxu.bs.solon.SolonPlugin Maven / Gradle / Ivy

There is a newer version: 4.3.2
Show newest version
package cn.zhxu.bs.solon;

import org.noear.solon.core.AppContext;
import org.noear.solon.core.Plugin;

/**
 * @author noear
 * @since 2.1
 */
public class SolonPlugin implements Plugin {
    @Override
    public void start(AppContext context) {
        //先构建配置
        context.beanMake(BeanSearcherProperties.class);

        //再构建托管对象
        context.beanMake(BeanSearcherConfiguration.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy