一.异常处理 有异常就必须处理,通常会在方法后面throws异常,或者是在方法内部进行try catch处理. 直接throws Exception 直接throws Exception,抛的异常太过宽泛,最好能抛出准确的异常,比如throws IOException之类. User getUserById(Integer id) throws IOException,BusinessException,InterruptedException; 如果有多种异常,那么方法后面要throws IO…