codecamp

包类的自动扫描(AutoScan)

YMP框架初始化时将自动扫描由autoscan_packages参数配置的包路径下所有声明了@Bean注解的类文件,首先分析被加载的类所有已实现接口并注册到Bean容器中,然后执行类成员的依赖注入和方法拦截代理的绑定;

:相同接口的多个实现类被同时注册到Bean容器时,通过接口获取的实现类将是最后被注册到容器的那个,此时只能通过实例对象类型才能正确获取;

  • 示例一:

    // 业务接口
    public interface IDemo {
        String sayHi();
    }
    
    // 业务接口实现类,单例模式
    @Bean
    public class DemoBean implements IDemo {
        public String sayHi() {
            return "Hello, YMP!";
        }
    }
    
  • 示例二:

    // 示例一中的业务接口实现类,非单例模式
    @Bean(singleton = false)
    public class DemoBean implements IDemo {
        public String sayHi() {
            return "Hello, YMP!";
        }
    }
    
  • 测试代码:

    public static void main(String[] args) throws Exception {
        YMP.get().init();
        try {
            // 1. 通过接口获取实例对象
            IDemo _demo = YMP.get().getBean(IDemo.class);
            System.out.println(_demo.sayHi());
    
            // 2. 直接获取实例对象
            _demo = YMP.get().getBean(DemoBean.class);
            System.out.println(_demo.sayHi());
        } finally {
            YMP.get().destroy();
        }
    }
核心概述
依赖注入(IoC)
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }