6
import org.springframework.beans.TypeMismatchException;
import javax.annotation.*;
import javax.servlet.http.*;
import org.springframework.http.HttpStatus;
import org.springframework.stereotype.Controller;
import org.springframework.context.annotation.Scope;
import org.springframework.web.bind.annotation.*;

@Controller
@RequestMapping(value = "/aa")
public class BaseController {

    @RequestMapping(value = "/bb/{number}", method = RequestMethod.GET, produces = "plain/text")
    public void test(@PathVariable final double number, final HttpServletResponse response) throws IOException {
        throw new MyException("whatever");
    }

    @ResponseBody
    @ExceptionHandler(MyException.class)
    public MyError handleMyException(final MyException exception, final HttpServletResponse response) throws IOException {
        ...
    }

    @ResponseBody
    @ExceptionHandler(TypeMismatchException.class)
    public MyError handleTypeMismatchException(final TypeMismatchException exception, final HttpServletResponse response) throws IOException {
        ...
    }

    @ResponseStatus(value = HttpStatus.INTERNAL_SERVER_ERROR)
    @ResponseBody
    @ExceptionHandler
    public MyError handleException(final Exception exception) throws IOException {
        ...
    }
}

如果我调用http://example.com/aa/bb/20 ,函数 handleMyException 会按预期执行。

但是,如果我调用http://example.com/aa/bb/QQQ , 我希望调用该函数handleTypeMismatchException,但会调用 handleException,但 type 除外TypeMismatchException

一个讨厌的解决方法是测试内部异常的类型,如果异常是类型则handleException()调用。handleTypeMismatchExceptionTypeMismatchException

但为什么它现在起作用了?根据异常类型在运行时选择异常处理程序?还是在编译时选择?

4

1 回答 1

4

来自官方春季文档的摘录:

在控制器中使用@ExceptionHandler 方法注释来指定在控制器方法执行期间抛出特定类型的异常时调用哪个方法

在实际方法执行之前,您尝试捕获的异常是由 spring 本身(字符串到双精度转换)生成的。捕捉它不在@ExceptionHandler 的规范中。这确实是有道理的——通常你不想捕获框架本身生成的异常。

于 2013-04-03T12:07:27.283 回答