
springboot
微风中的人
这个作者很懒,什么都没留下…
展开
-
SpringBoot判断redis中的值是否存在或是否过期
boolean hasKey = redisTemplate.hasKey(key); if(hasKey ){ System.out.print("存在"); } else { System.out.print("不存在"); }原创 2019-10-24 11:14:25 · 7353 阅读 · 0 评论 -
Spring boot设置文件上传大小限制
Spring Boot做文件上传时出现了报错:The field file exceeds its maximum permitted size of 1048576 bytes。 显示文件的大小超出了允许的范围。查看了官方文档,原来Spring Boot工程嵌入的tomcat限制了请求的文件大小默认为1MB,单次请求的文件的总数不能大于10Mb.要更改这个默认值需要在配置文件(如applica...原创 2019-03-29 09:05:34 · 836 阅读 · 0 评论