Package org.magicbox.aop

Source Code of org.magicbox.aop.LoggingAdvice

package org.magicbox.aop;

import org.apache.log4j.Logger;
import org.springframework.aop.ThrowsAdvice;

public class LoggingAdvice implements ThrowsAdvice {

    public void afterThrowing(Exception ex) throws Throwable {
        Logger log = Logger.getLogger("logfile_application");
        log.error("si e' verificato un errore:", ex.getCause());
    }

}
TOP

Related Classes of org.magicbox.aop.LoggingAdvice

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.