Package com.tobedevoured.modelcitizen.spring.annotation

Examples of com.tobedevoured.modelcitizen.spring.annotation.SpringBlueprint.autowire()


     * @throws RegisterBlueprintException
     */
    @Override
    public void registerBlueprint(Object blueprint) throws RegisterBlueprintException {
        SpringBlueprint springBlueprint = blueprint.getClass().getAnnotation(SpringBlueprint.class);
        if ( springBlueprint != null && springBlueprint.autowire() ) {
            logger.debug( "Autowiring blueprint {}", blueprint );
            beanFactory.autowireBean( blueprint );
        }
        super.registerBlueprint(blueprint);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.