java
package com.qf.common;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
/**
* 统一异常处理类
*/
@ControllerAdvice
public class MyExceptionHandler {
@ExceptionHandler(NullPointerException.class)
public String nullExp(){
return "/err1.jsp";
}
@ExceptionHandler(NumberFormatException.class)
public String NumFormatExp(){
return "/err2.jsp";
}
}