com.github.datalking.beans.factory.config.BeanPostProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play-mvc Show documentation
Show all versions of play-mvc Show documentation
simple mvc framework based on java servlet.
The newest version!
package com.github.datalking.beans.factory.config;
/**
* 容器扩展接口
*
* 在Bean实例化后,初始化前后执行,可以实现自动注入、各种代理(AOP)等功能
*
* @author yaoo on 4/16/18
*/
public interface BeanPostProcessor {
// 初始化前执行
Object postProcessBeforeInitialization(Object bean, String beanName);
// 初始化后执行
Object postProcessAfterInitialization(Object bean, String beanName);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy