// 看清楚导入的包
import org.springframework.util.ObjectUtils;

public String upload(@RequestParam("file") MultipartFile file){
	if (ObjectUtils.isEmpty(file) || file.getSize() <= 0) {
		throw new SystemException("上传文件大小为空");
	}
	
	return "成功";
}
1
2
3
4
5
6
7
8
9
10