Java tutorial
/* * Copyright 2015-2102 RonCoo(http://www.roncoo.com) Group. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.roncoo.pay.controller.exception; import javax.servlet.http.HttpServletRequest; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.springframework.http.HttpStatus; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.ResponseStatus; import com.roncoo.pay.common.core.exception.BizException; /** * Spring. * www.roncoo.com * @author zenghao */ @ControllerAdvice public class WebExceptionHandler { private static final Log LOG = LogFactory.getLog(WebExceptionHandler.class); /** * * <p/> * ?????? */ @ExceptionHandler({ BizException.class }) @ResponseStatus(HttpStatus.OK) public String processBizException(HttpServletRequest request, BizException e) { LOG.error("BizException", e); request.setAttribute("msg", e.getMsg()); return "common/error"; } /** * */ @ExceptionHandler({ Exception.class }) @ResponseStatus(HttpStatus.OK) public String processException(Exception e, HttpServletRequest request) { LOG.error("Exception", e); request.setAttribute("msg", ""); return "common/error"; } }