Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.IllegalArgumentException: Date String must be not blank !] with root cause
时间: 2023-06-26 16:05:43 浏览: 337
ServletContext
这个异常是由于你的代码中传入了一个空的日期字符串,导致抛出了 IllegalArgumentException 异常。你需要检查代码中关于日期的处理代码,确保传入的日期字符串不为空。你可以使用字符串非空判断函数如 isNotBlank() 或者 isNotEmpty() 来检查日期字符串是否为空。例如:
```
if(StringUtils.isNotBlank(dateString)){
// 处理日期字符串
} else {
// 抛出异常或者进行其他处理
}
```
注意,上面使用了 Apache Commons Lang 库中的 StringUtils 类,这个库提供了很多常用的字符串操作函数,可以方便我们编写代码。如果你没有使用这个库,可以使用 Java 自带的字符串操作函数来进行非空判断。
阅读全文