zoukankan      html  css  js  c++  java
  • @ControllerAdvice注解的使用

    package com.vcredit.ddcash.monitor.controller;

    import com.vcredit.ddcash.monitor.model.dto.Response;
    import freemarker.template.utility.StringUtil;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    import org.springframework.ui.Model;
    import org.springframework.web.bind.annotation.ControllerAdvice;
    import org.springframework.web.bind.annotation.ExceptionHandler;
    import org.springframework.web.bind.annotation.ResponseBody;

    import javax.servlet.http.HttpServletRequest;
    import java.util.Enumeration;
    import java.util.HashMap;
    import java.util.Locale;
    import java.util.Map;

    /**
    * Created by guanshuli on 2017/1/11.
    */
    @ControllerAdvice
    public class GlobalExceptionHandler {
    public static final String DEFAULT_ERROR_VIEW = "error";
    public static Logger logger = LoggerFactory.getLogger(GlobalExceptionHandler.class);

    @ExceptionHandler(value = Throwable.class)
    @ResponseBody
    public Object defaultErrorHandler(Throwable e,
    HttpServletRequest request) {
    Response response=new Response();
    e.printStackTrace();
    response.setStatus("接口异常");
    response.setMsg("网络异常,请稍后重试");
    this.writeLog(request, e);
    return response;
    }

    private void writeLog(HttpServletRequest request, Throwable e) {
    Map<String, String> map = new HashMap<String, String>();
    Enumeration<String> enumeration = request.getHeaderNames();
    while (enumeration.hasMoreElements()) {
    String str = enumeration.nextElement().toString();
    map.put(str, request.getHeader(str));
    }
    map.put("getRequestURI", request.getRequestURI());
    logger.error("请求异常,请求头:{};", map.toString(), e);

    }
    }

  • 相关阅读:
    About Face 摘录
    断言的使用
    C#中值传递和引用传递
    C++技巧之断言Assert
    About Face 一 目标导向设计
    About Face 二 设计行为与形态
    C++中引用传递与指针传递区别
    一个新的时代SoLoMo
    离散数学笔记算法部分
    汪教授的离散数学20110308 谓词与量词2
  • 原文地址:https://www.cnblogs.com/muliu/p/6273740.html
Copyright © 2011-2022 走看看