I'm considering to use CDI injection for slf4j logger, so I've created a producer.
I'm injecting it into an ApplicationScoped
bean which is serializable:
@ApplicationScoped
public final class CurrentApplicationBean implements Serializable {
@Inject
private transient Logger logger;
}
It must be transient because org.slf4j.Logger
is an interface which doesn't extend Serializable
, but this means that the logger must be re-injected after deserialization.
I think that CDI doesn't handle that, what's you knowledge?
Moreover, the provider always provides a new Logger
instance beacuse it must set the logger name from the InjectionPoint
, this means that RequestScoped
beans have their own logger instance instead of a static per class logger.
Maybe logging is not a good context for CDI injection... what are your considerations?