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

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