blog.broncotoxique.com

Juste another geek’s website

Tag: BeanPostProcessor

  • Spring – BeanPostProcessor

    BeanPostProcessor is a factory hook that allows the Spring framework to customize and modify Bean instances when they are newly created. For example: by checking it’s marked interface or using a proxy to wrap it. The application context will automatically detect BeanPostProcessors from the Bean definition and apply them to any beans created subsequently. On…