feat: Blob 파일 DB 저장 예제

dev
gitea-관리자 1 year ago
parent 3ad678f6d7
commit e3bc1f6bcf

@ -53,7 +53,7 @@ public class BlobInsert {
}
double size = Math.ceil(file.length()/1024.0 * 10)/10;
if(size > 300.0){
throw BizRuntimeException.create(String.format("파일 크기 %s[템플릿 파일 크기는 300kb를 넘을 수 없습니다]", String.valueOf(size)));
throw BizRuntimeException.create(String.format("파일 크기 %s[템플릿 파일 크기는 300kb를 넘을 수 없습니다]", size));
}
try (InputStream inputStream = new FileInputStream(file)) {

Loading…
Cancel
Save