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

com.github.mekuanent.encryption.registry.ContextHelper Maven / Gradle / Ivy

package com.github.mekuanent.encryption.registry;

import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;

/**
 * Binds Easy access {@link ApplicationContext application context}
 * Source https://github.com/brunozambiazi/blog/tree/master/spring-application-context
 * @author brunozambiazi
 */
@Component
public class ContextHelper implements ApplicationContextAware {

    private static ApplicationContext context;

    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        context = applicationContext;
    }

    /**
     * Get a Spring bean by type.
     * @param beanClass The Class of the bean to reach for
     * @param  The bean Class Type
     * @return T the respective bean
     **/
    public static  T getBean(Class beanClass) {
        return context.getBean(beanClass);
    }

    /**
     * Get a Spring bean by name.
     * @param beanName The bean id/name of the bean to reach for
     * @return the respective bean
     **/
    public static Object getBean(String beanName) {
        return context.getBean(beanName);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy