
quarkus.springboot.tests.data.springboot-di.CustomBeanFactoryPostProcessor Maven / Gradle / Ivy
The newest version!
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
public class CustomBeanFactoryPostProcessor implements BeanFactoryPostProcessor {
@Override
public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)
throws BeansException {
System.out.println("Inside postProcessBeanFactory method.");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy