com.mir00r.EmployeeBeanFactoryPostProcessor.java Source code

Java tutorial

Introduction

Here is the source code for com.mir00r.EmployeeBeanFactoryPostProcessor.java

Source

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/

package com.mir00r;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;

/**
 * 
 * @author Abdur Razzak <abdur.razzaq06@ail.com>
 */
public class EmployeeBeanFactoryPostProcessor implements BeanFactoryPostProcessor {

    @Override
    public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
        System.out.println("Bean factory post processor is working----------------------------");
    }

}