Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
Code Block | ||
---|---|---|
| ||
import org.joget.commons.util.FileLimitException; import org.joget.commons.util.FileStore; import org.joget.commons.util.LogUtil; import org.springframework.web.multipart.MultipartFile; String uploadFieldName = "csvImport"; //Gets file try { MultipartFile csvFile = FileStore.getFile(uploadFieldName); } catch (FileLimitException e) { LogUtil.error("", e, "File received from " + uploadFieldName + " is exceeded file size limit of " + FileStore.getFileSizeLimit() + "MB."); } |
Thai |
---|
กระบวนการ |
public static void clear()
English |
---|
Method used by the system to clear the ThreadLocal object after an HTTP request is finished processing |
Thai |
---|
วิธีการที่ใช้โดยระบบเพื่อล้างวัตถุ ThreadLocal หลังจากการร้องขอ HTTP เสร็จสิ้นการประมวลผล |
...