blog.broncotoxique.com

Juste another geek’s website

Tag: Bean

  • Spring-Framework, JavaMelody and MongoTemplate

    Let say you use Spring-Framework (without Spring-Boot), MongoTemplate and JavaMelody in the same app. I guess you will need to see the mongo request statistics in the Melody dashboard, like you see the SQL statistics. First you might have followed the JavaMelody documentation to setup Melody into you app. Let say you create your MongoTemplate…

  • 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…