Logger Injection with Spring’s InjectionPoint
You should all be familiar with the boiler plate code you include on top of your classes to get a Logger instance for use in your classes at runtime.
This is the classic way of obtaining a logger instance at runtime with the classname that you want to be displayed in your log messages like below.
The fully qualified class name org.orwashere.WorkOrderController is retrieved and logged from the class parameter you pass to LoggerFactories getLogger class.
With Spring Framework’s new InjectionPoint feature you can get rid of these boiler plate code in your classes. All you need to do is declaring a prototype scoped Logger bean in one of your configuration classes like below. And from that point you have access to the class’s properties that the Logger bean is being injected to. As we should be creating a new Logger instance for each Spring Bean that we want to enable logging it is important define the Logger bean as prototype scoped.
In your class target bean in which the logger will actually be used all you need to do is injecting the Logger bean as a classic Spring Bean and voila your logger is configured and ready to be used in your class like below.
Even though we are talking about Logger injection in this post, with InjectionPoint support many other opportunities arise before injecting any bean into your class. Basically you can make any kind of configuration on your injected bean depending on the target bean.
Hope it helps you in your feature development!
Happy coding!