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

quarkus.springboot.tests.data.springboot-di.CustomBeanPostProcessor Maven / Gradle / Ivy

The newest version!
CustomBeanPostProcessor.java
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanPostProcessor;
 
public class CustomBeanPostProcessor implements BeanPostProcessor 
{
  public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException 
  {
    System.out.println("Called postProcessBeforeInitialization() for :" + beanName);
    return bean;
  }
   
  public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException 
  {
    System.out.println("Called postProcessAfterInitialization() for :" + beanName);
    return bean;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy