我正在尝试使用两种格式将字符串转换为Date。但是,当DateString与两种格式都不匹配时,它将引发ParseException。我在ServiceImpl中捕获了此异常,一切都很好。但是现在,我想向用户显示一些有关其格式错误的消息。
问题:我正在使用ParseException的catch块引发我的customException,我知道这是一种不好的做法。我应该怎么做才能避免这种情况。

ServiceImpl.java

try {
        CommonUtils.convertStringToDate(fooBean.getDateString());
    } catch (ParseException e) {
        throw new DateParseException("Problems with your date.");
    }


GlobalExceptionHandler.java

@ExceptionHandler(DateParseException.class)
public String handleParseException(HttpServletRequest request, Exception ex, String msg){
    logger.error("DateParseException Occured :: "+ex.getMessage());
    ModelAndView model = new ModelAndView();
    model.addObject("message", msg);
    return "error";
}


CommonUtils.java

public static Date convertStringToDate(String dateString) throws ParseException{
        DateFormat dateFormat1 = new SimpleDateFormat(Constants.USDATEFORMAT1);
        DateFormat dateFormat2 = new SimpleDateFormat(Constants.USDATEFORMAT2);
        DateFormat dateFormat3 = new SimpleDateFormat(Constants.USDATEFORMAT3);
        DateFormat dateFormat4 = new SimpleDateFormat(Constants.USDATEFORMAT4);
        boolean hyphenDelimeter = dateString.contains("-");
        boolean slashDelimeter = dateString.contains("/");
        int length = dateString.length();
        Date date = null;
        if(slashDelimeter){
            if(length == 10){
                    date = dateFormat1.parse(dateString);
            }else if(length == 8){
                    date = dateFormat2.parse(dateString);
            }
        }else if(hyphenDelimeter){
            if(length == 10){
                    date = dateFormat3.parse(dateString);
            }else if(length == 8){
                    date = dateFormat4.parse(dateString);
            }
        }
        return date;
    }

最佳答案

调整您的异常以包含一个“原因异常”,然后将捕获的异常包装在您的自定义异常中,如下所示:

...
} catch (final ParseException e) {
  throw new DateParseException("Problems with your date.", e);
}


或将更相关的错误消息添加到您抛出的观念中:

...
} catch (final ParseException e) {
  throw new DateParseException("Date could not be parsed.");
}


我会做前者来保留堆栈跟踪,因此您可以更详细地了解出了什么问题。

关于java - 在Spring MVC中将CustomException代替ParseException,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49112074/

10-10 07:58