`

使用Spring进行统一日志管理 + 统一异常管理

 
阅读更多
使用Spring进行统一日志管理 + 统一异常管理

统一日志和异常管理配置好后,SSH项目中,代码以往散落的log.info() 和 try..catch..finally 再也不见踪影!
统一日志异常实现类:

package com.pilelot.web.util;  
  
import org.apache.log4j.Logger;  
import org.springframework.aop.ThrowsAdvice;  
import org.springframework.dao.DataAccessException;  
  
import java.io.IOException;  
import java.lang.reflect.Method;  
import java.sql.SQLException;  
  
/** 
 * 由Spring AOP调用 输出异常信息,把程序异常抛向业务异常 
 *  
 * @author Andy Chan 
 * 
 */  
public class ExceptionAdvisor implements ThrowsAdvice  
{  
    public void afterThrowing(Method method, Object[] args, Object target,  
            Exception ex) throws Throwable  
    {  
        // 在后台中输出错误异常异常信息,通过log4j输出。  
        Logger log = Logger.getLogger(target.getClass());  
        log.info("**************************************************************");  
        log.info("Error happened in class: " + target.getClass().getName());  
        log.info("Error happened in method: " + method.getName());  
            for (int i = 0; i < args.length; i++)  
            {  
                log.info("arg[" + i + "]: " + args[i]);  
            }  
        log.info("Exception class: " + ex.getClass().getName());  
        log.info("ex.getMessage():" + ex.getMessage());  
        ex.printStackTrace();  
        log.info("**************************************************************");  
  
        // 在这里判断异常,根据不同的异常返回错误。  
        if (ex.getClass().equals(DataAccessException.class))  
        {  
            ex.printStackTrace();  
            throw new BusinessException("数据库操作失败!");  
        } else if (ex.getClass().toString().equals(  
                NullPointerException.class.toString()))  
        {  
            ex.printStackTrace();  
            throw new BusinessException("调用了未经初始化的对象或者是不存在的对象!");  
        } else if (ex.getClass().equals(IOException.class))  
        {  
            ex.printStackTrace();  
            throw new BusinessException("IO异常!");  
        } else if (ex.getClass().equals(ClassNotFoundException.class))  
        {  
            ex.printStackTrace();  
            throw new BusinessException("指定的类不存在!");  
        } else if (ex.getClass().equals(ArithmeticException.class))  
        {  
            ex.printStackTrace();  
            throw new BusinessException("数学运算异常!");  
        } else if (ex.getClass().equals(ArrayIndexOutOfBoundsException.class))  
        {  
            ex.printStackTrace();  
            throw new BusinessException("数组下标越界!");  
        } else if (ex.getClass().equals(IllegalArgumentException.class))  
        {  
            ex.printStackTrace();  
            throw new BusinessException("方法的参数错误!");  
        } else if (ex.getClass().equals(ClassCastException.class))  
        {  
            ex.printStackTrace();  
            throw new BusinessException("类型强制转换错误!");  
        } else if (ex.getClass().equals(SecurityException.class))  
        {  
            ex.printStackTrace();  
            throw new BusinessException("违背安全原则异常!");  
        } else if (ex.getClass().equals(SQLException.class))  
        {  
            ex.printStackTrace();  
            throw new BusinessException("操作数据库异常!");  
        } else if (ex.getClass().equals(NoSuchMethodError.class))  
        {  
            ex.printStackTrace();  
            throw new BusinessException("方法末找到异常!");  
        } else if (ex.getClass().equals(InternalError.class))  
        {  
            ex.printStackTrace();  
            throw new BusinessException("Java虚拟机发生了内部错误");  
        } else  
        {  
            ex.printStackTrace();  
            throw new BusinessException("程序内部错误,操作失败!" + ex.getMessage());  
        }  
    }  
}  



自定义业务异常处理类 友好提示:
package com.pilelot.web.util;  
  
/** 
 * 自定义业务异常处理类    友好提示 
 * @author Andy Chan 
 * 
 */  
public class BusinessException extends RuntimeException  
{  
    private static final long serialVersionUID = 3152616724785436891L;  
  
    public BusinessException(String frdMessage)  
    {  
        super(createFriendlyErrMsg(frdMessage));  
    }  
  
    public BusinessException(Throwable throwable)  
    {  
        super(throwable);  
    }  
  
    public BusinessException(Throwable throwable, String frdMessage)  
    {  
        super(throwable);  
    }  
  
    private static String createFriendlyErrMsg(String msgBody)  
    {  
        String prefixStr = "抱歉,";  
        String suffixStr = " 请稍后再试或与管理员联系!";  
  
        StringBuffer friendlyErrMsg = new StringBuffer("");  
  
        friendlyErrMsg.append(prefixStr);  
  
        friendlyErrMsg.append(msgBody);  
  
        friendlyErrMsg.append(suffixStr);  
  
        return friendlyErrMsg.toString();  
    }  
}  


统一日志处理实现类:
package com.pilelot.web.util;  
  
import org.aopalliance.intercept.MethodInterceptor;  
import org.aopalliance.intercept.MethodInvocation;  
import org.apache.log4j.Logger;  
  
/** 
 * Spring 统一日志处理实现类 
 * @author Andy Chan 
 *  
 */  
public class LogInterceptor implements MethodInterceptor  
{  
  
    public Object invoke(MethodInvocation invocation) throws Throwable  
    {  
        Logger loger = Logger.getLogger(invocation.getClass());  
  
        loger.info("--Log By Andy Chan -----------------------------------------------------------------------------");  
        loger.info(invocation.getMethod() + ":BEGIN!--(Andy ChanLOG)");// 方法前的操作  
        Object obj = invocation.proceed();// 执行需要Log的方法  
        loger.info(invocation.getMethod() + ":END!--(Andy ChanLOG)");// 方法后的操作  
        loger.info("-------------------------------------------------------------------------------------------------");  
  
        return obj;  
    }  
  
}  


Spring配置文件添加:
<!-- Spring 统一日志处理   LogInterceptor拦截器 配置 -->     
<bean id="logLnterceptor" class="com.pilelot.web.util.LogInterceptor"/>  
<!-- Spring 统一异常处理  ExceptionAdvisor配置 -->  
<bean id="exceptionHandler" class="com.pilelot.web.util.ExceptionAdvisor"></bean>  
  
    <!-- Bean自动代理处理器 配置-->    
<bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator" >  
   <property name="beanNames">  
    <list>    <!-- 配置需要进行日志记录的Service和Dao -->  
        <value>commonDao</value>  
                <!-- 配置所有Service结尾命名的Bean,即所有Service层的类都要经过exceptionHandler异常处理类 -->   
        <value>*Service</value>  <!-- Service层的Bean ID 命名要以Service结尾 -->  
    </list>  
   </property>  
   <property name="interceptorNames">  
    <list>  
         <value>exceptionHandler</value>  
         <value>logLnterceptor</value>  
         <!--<value>transactionInterceptor</value>-->  
    </list>  
   </property>  
</bean>  
lt;!-- ——————————————————Spring 统一日志处理 + 统一异常处理  配置结束—————————————悲伤的分隔线—————————— -->  


这样简单三步,就实现了由Spring统一日志+统一异常管理,代码清爽了不少!

reference:http://blog.csdn.net/king87130/article/details/8011843
分享到:
评论
1 楼 di1984HIT 2014-04-24  
写的不错。

相关推荐

    springboot+redis+shiro单点登录,统一异常处理,统一日志

    3. **统一日志**: - SpringBoot整合Logback或Log4j等日志框架,配置统一的日志格式和级别。 - 使用AOP(面向切面编程)实现全局日志记录,通过@Aspect注解定义一个切面类,拦截所有方法调用,记录方法的入参、出...

    spring boot aop 统一处理日志

    在这个增强后的`logAround`方法中,我们使用`@Around`通知,因为它允许我们在方法执行前后分别进行操作,并能捕获任何抛出的异常。我们记录了方法开始的时间,然后调用`proceed()`来执行原始方法,最后计算并记录...

    微服务请求日志统一处理方案

    在微服务架构中,日志的统一管理与处理是一个重要的课题。这有助于提高系统的可维护性,便于故障排查和性能优化。"微服务请求日志统一处理方案"旨在解决这个问题,通过创建一个独立的日志组件,实现对各个微服务请求...

    SpringBoot学习笔记——AOP全局统一日志管理

    【SpringBoot学习笔记——AOP全局统一日志管理】 在软件开发中,日志记录是一项至关重要的任务,它有助于追踪操作记录、系统监控以及满足审计需求。SpringBoot作为一个流行的Java微服务框架,提供了AOP(面向切面...

    tidb(mysql5.7) springboot mybatis-plus

    java Springboot开发必备环境 : ...统一参数校验,自定义异常提醒,统一日志,统一响应返回,统一异常处理 。 推荐2: mybatis-plus 采用最新的生成代码工具 推荐3: 将多个基础功能整理后,并用单元测试验证。

    spring-boot-api-project-seed:Spring Boot API Project Seed 是一个基于Spring Boot & MyBatis的种子项目,可作为权限脚手架项目,集成Shiro+Redis+JWT+MyBatis-Plus

    源码托管特征&提供最佳实践的项目结构、配置文件、精简的POM统一响应结果封装统一异常处理统一日志打印开源的Java工具包Hutool简单的接口签名认证常用基础方法抽象封装使用Druid Spring Boot Starter 集成Druid...

    基于ssm+mysql高校学生请假管理系统源码数据库.docx

    - **异常处理**:设计统一的异常处理机制,提高系统的健壮性。 #### 四、核心代码示例 由于具体代码较长且复杂,这里仅展示部分关键代码片段。 ```java // 用户登录接口 @RequestMapping(value = "/login", ...

    SSH整合项目中容易出现的错误

    统一异常处理策略,如使用Spring的@ControllerAdvice或Struts2的全局异常拦截器。 以上只是部分常见的SSH整合错误,实际开发中可能还会遇到其他问题。解决这些问题需要对SSH框架有深入理解,熟悉其内部原理和配置...

    SpringBoot单体项目通用脚手架

    3. **日志处理**:集成Logback或Log4j,统一日志管理,便于追踪问题。 4. **异常处理**:全局异常处理,捕获并统一返回错误信息,提高用户体验。 5. **数据库支持**:支持多种数据库,如MySQL、Oracle等,通过JPA或...

    springboot201基于SpringBoot的论坛系统设计与实现.zip

    1. SLF4J与Logback:统一日志门面和日志实现,便于日志记录和分析。 2. 异常处理:全局异常处理,统一捕获和处理程序运行中的异常,提升用户体验。 九、持续集成与部署 1. Docker容器化:利用Docker打包应用,实现...

    springboot/web项目优秀的后端接口体系,看一篇就够了

    项目构建-统一参数校验,统一结果响应,统一异常处理,统一错误处理,统一日志记录,统一生成api文档 1. 前言 一个后端接口大致分为四个部分组成:接口地址(url)、接口请求方式(get、post等)、请求数据(request...

    加入切面环绕通知实现,日志比较完善的使用方式

    5. **日志格式化**:统一日志格式,便于日志分析工具解析。 6. **异步日志**:避免日志记录影响主线程的执行效率,可以使用异步方式记录日志。 在实际应用中,我们可能还需要结合具体的需求,如`MDC(Mapped ...

    mallcloud商城 v1.0

    统一异常处理mallcloud商城安装使用mallcloud商城演示地址 账号密码:admin/admin 应用监控账号密码:admin/admin 配置中心账号密码:nacos/nacos APM监控账号密码:admin/admin Grafana账号:mall/mall txlcn...

    mallcloud商城-其他

    统一异常处理 mallcloud商城演示地址 账号密码:admin/admin 应用监控账号密码:admin/admin 配置中心账号密码:nacos/nacos APM监控账号密码:admin/admin Grafana账号:mall/mall txlcn事务管理器密码:admin 任务...

Global site tag (gtag.js) - Google Analytics