
SSM
wly_
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Spring中,StringUtils的isEmpty方法已弃用
原文:Deprecated. as of 5.3, in favor of hasLength(String) and hasText(String) (or ObjectUtils.isEmpty(Object))Check whether the given object (possibly a String) is empty. This is effectively a shortcut for !hasLength(String).This method accepts any Object翻译 2021-03-14 19:37:12 · 22221 阅读 · 8 评论 -
Spring MVC文件上传出现错误:Required MultipartFile parameter 'file' is not present
使用Spring MVC的文件上传时需要注意的事项在学习Spring MVC文件上传时出现了许多问题,记录在此1.配置文件上传的解析器首先需要在spring mvc的配置文件中(注意是spring mvc的配置文件而不是spring的配置文件:applicationContext.xml)配置:springmvc-config.xml<!-- 文件上传bean--> ...原创 2019-12-15 17:10:49 · 1843 阅读 · 0 评论