Package net.hasor.core.ApiBinder

Examples of net.hasor.core.ApiBinder.BeanBindingBuilder


                Hasor.logWarn("missing Bean name %s", beanClass);
                continue;
            }
            if (StringUtils.isBlank(names[0]))
                continue;
            BeanBindingBuilder beanBuilder = apiBinder.defineBean(names[0]);
            Hasor.logInfo("loadBean %s bind %s", names, beanClass);
            for (int i = 1; i < names.length; i++)
                beanBuilder.aliasName(names[i]);
            beanBuilder.bindType(beanClass);
        }
    }
View Full Code Here

TOP

Related Classes of net.hasor.core.ApiBinder.BeanBindingBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.