Large File Upload is not Working in Oracle ADF Application in Weblogic
Hi,
I'm using an ADF Application which build using Jdeveloper 12.2.1.2 and deployed on weblogic server. In this application, when I try to upload a large file (about 0.62Gb), i'm getting the "java.lang.OutOfMemoryError: GC overhead limit exceeded" error message.
The file upload configurations in web.xml are -
<context-param>
<param-name>org.apache.myfaces.trinidad.UPLOAD_MAX_FILE_SIZE</param-name>
<param-value>812000000</param-value>
<!--<param-value>512000000</param-value> 10000-->
</context-param>
<context-param>
<param-name>org.apache.myfaces.trinidad.UPLOAD_MAX_DISK_SPACE</param-name>
<!-- Use 5000K : 512000000-->
<param-value>812000000</param-value>
<!--<param-value>512000000</param-value>-->
</context-param>
<context-param>
<!-- Maximum memory per request (in bytes) -->
<param-name>org.apache.myfaces.trinidad.UPLOAD_MAX_MEMORY</param-name>