I am getting out of memory error while running the web appl.
Even though I set the java_opt= -Xms512m -Xmx1024m but still I am getting error . can any one tell me why this is happening
Exception in thread "http-bio-8080-exec-3" java.lang.OutOfMemoryError: Java heap space
at java.util.Arrays.copyOf(Arrays.java:2882)
at java.lang.AbstractStringBuilder.expandCapacity(AbstractStringBuilder.java:100)
at java.lang.AbstractStringBuilder.append(AbstractStringBuilder.java:515)
at java.lang.StringBuilder.append(StringBuilder.java:189)
at java.lang.StringBuilder.append(StringBuilder.java:189)
I would say you are trying to add more text to a StringBuilder than available memory allows.
Probably there is a conceptual / architecture error in your code which led you to this but since you don't mention what your code is supposed to do.....
@ Paul : Can you please share where Generally we set Heap Memory or where we get Heap memory Error ?
@ William : Then Code is workin fine on my QA server this problem I am facing in my local System. William I can't disclose my code but you are right the code that I collect in string builder is bigger can you please share instead of stringBuilder what I can use ?