Enterprise Java

Configure LogBack Logging with Spring

LogBack is an API for logging created by the same author of Log4j (a newer implementation, it is like a new version), during this article I’m going to show how to integrate it and use it on a Spring project.

On this tutorial I assume you are using a simple Spring ROO project which will prepare all the structure of the project for you, for more information see : http://www.springsource.org/spring-roo.

First of all you need to create the logback.xml (hold the configuration appenders like log4j.properprties) file in src/main/resources:

 
 

<?xml version="1.0" encoding="UTF-8"?>

<configuration>

    <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">

        <encoder>

            <pattern>%d %5p | %t | %-55logger{55} | %m %n</pattern>

        </encoder>

    </appender>

    <logger name="test.myapp.repos">

        <level value="INFO" />

    </logger>

    <logger name="org.springframework">

        <level value="INFO" />

    </logger>

    <root>

        <level value="INFO" />

        <appender-ref ref="CONSOLE" />

    </root>

</configuration>

The second step is to configure Maven dependencies and add LogBack required libraries:

<-- Properties Settings -->

<properties>

    <roo.version>1.1.0.RELEASE</roo.version>

    <spring.version>3.0.5.RELEASE</spring.version>

    <aspectj.version>1.6.10</aspectj.version>

    <slf4j.version>1.6.1</slf4j.version>

    <logback.version>0.9.26</logback.version>

    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

 </properties>

<-- Dependencies Settings -->

<dependency>

    <groupId>org.slf4j</groupId>

    <artifactId>slf4j-api</artifactId>

    <version>${slf4j.version}</version>

</dependency>

<dependency>

    <groupId>log4j</groupId>

    <artifactId>log4j</artifactId>

    <version>1.2.16</version>

</dependency>

<dependency>

    <groupId>org.slf4j</groupId>

    <artifactId>jcl-over-slf4j</artifactId>

    <version>${slf4j.version}</version>

</dependency>

<dependency>

    <groupId>ch.qos.logback</groupId>

    <artifactId>logback-classic</artifactId>

    <version>${logback.version}</version>

</dependency>

<dependency>

    <groupId>ch.qos.logback</groupId>

    <artifactId>logback-core</artifactId>

    <version>${logback.version}</version>

</dependency>

<dependency>

    <groupId>ch.qos.logback</groupId>

    <artifactId>logback-access</artifactId>

    <version>${logback.version}</version>

</dependency>

You need to get rid of all Log4j dependencies in the Maven pom.xml generated by Spring ROO, clean every single dependency related to logging before you add the code provided to set up LogBack.

For using the logger on a class you are developing, you need to create a static instance of it and use normally as you use the Log4J, the only difference is the implementation and configuration code of LogBack Vs Log4j. On Logback.xml your class must be scanned for the logger to work.

package test.myapp.repos; /*This package figures on LogBack.xml*/

import org.slf4j.Logger;

import org.slf4j.LoggerFactory;

public class MyTestClass {

    static Logger logger = LoggerFactory.getLogger(ItemController.class);

    ...

    public void create(String args) {

        logger.debug("My Args Is => " + args);

    }

    ...

}
There is another sophisticated way of injecting the logger on a Spring bean, this can be achieved by developing a custom BeanPostProcessor which will automatically inject the Logger on fields annotated with @Log (this is a custom annotation we created) instead of instantiating the manually the logger as described earlier.
/** Custom @Logger annotation **/

@Retention(RUNTIME)

@Target(FIELD)

@Documented

public @interface Log { }

/** LoggerPostProcessor => Custom Spring BeanPostProcessor **/

public class LoggerPostProcessor implements BeanPostProcessor {

    public Object postProcessAfterInitialization(Object bean, String beanName) throws

        BeansException {

        return bean;

    }

    public Object postProcessBeforeInitialization(final Object bean, String beanName)

          throws BeansException {

        ReflectionUtils.doWithFields(bean.getClass(), new FieldCallback() {

                @SuppressWarnings("unchecked")

                public void doWith(Field field) throws IllegalArgumentException,

                    IllegalAccessException {

                    ReflectionUtils.makeAccessible(field);

                    //Check if the field is annoted with @Log

                    if (field.getAnnotation(Log.class) != null) {

                        Log logAnnotation = field.getAnnotation(Log.class);

                        Logger logger = LoggerFactory.getLogger(bean.getClass());

                        field.set(bean, logger);

                    }

                }

        });

        return bean;

    }

}

/** Usage on a Spring Bean **/

@Component

public class MyBeanImpl implements MyBean {

    /** Not manual set up code **/

    @Log Logger myLogger;

    ...

}

The last thing to do is to declare this new BeanPostProcessor on you applicationContext.xml file :

<!-- The Logger Injector -->

<bean id="LogginInjector" class="ma.oncf.achat.utils.LoggerPostProcessor" />

For more information about why to switch to LogBack, see : Why switch to LogBack.

Reference: Configure LogBack Logging with Spring from our JCG partner Idriss Mrabti at the Fancy UI blog.

Related Articles :

Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
jalalashrafi
jalalashrafi
11 years ago

This could be used in spring managed beans, but a more generic solution would be using aspects.

Back to top button