2
votes
3answers
57 views
JUnit java.lang.OutOfMemoryError when running all tests in a package
When loading all unit tests in a package, the make task throws a java.lang.OutOfMemoryError: Java heap space error.
If I run all the tests in each subpackage, though, all tests lo …
0
votes
3answers
30 views
Hibernate: OutOfMemoryError persisting Blob when printing log message
I have a Hibernate Entity:
@Entity
class Foo {
//...
@Lob
public byte[] getBytes() { return bytes; }
//....
}
My VM is configured with a maximum heap size of 512 …
1
vote
1answer
49 views
How can I avoid OutOfMemoryErrors when using Commons FileUpload’s DiskFileItem to upload large files?
I am getting OutOfMemoryErrors when uploading large (>300MB) files to
a servlet utilizing Commons FileUpload 1.2.1. It seems odd, because
the entire point of using DiskFileItem is …
0
votes
3answers
80 views
CComBSTR memory allocation
I have a "const char* str" with a very long string.
I need to pass it from a cpp client to a .Net COM method which expects BSTR type.
Currently I use:
CComBSTR bstr = str;
This …
6
votes
2answers
844 views
What means the error-message ‘java.lang.OutOfMemoryError: GC overhead limit exceeded’ in Java?
I get this errormessage as I execute my JUnit-Tests:
java.lang.OutOfMemoryError: GC overhead limit exceeded
I know OutOfMemoryError, but what does GC overhead limit mean, and ho …
2
votes
1answer
80 views
OutOfMemoryError in a separate Java thread
Consider that I have a main Thread which executes a new Runnable in a new Thread. Now, while the new Thread is executing, the Java VM runs out of memory and throws an OutOfMemoryEr …
0
votes
1answer
394 views
ActiveMQ 5.2.0 + REST + HTTP POST = java.lang.OutOfMemoryError
First off, I am a newbie when it comes to JMS & ActiveMQ.
I have been looking into a messaging solution to serve as middleware for a message producer that will insert XML mess …
15
votes
7answers
8k views
How to deal with “java.lang.OutOfMemoryError: Java heap space” error (64MB heap size)
I am writing a client-side Swing application (graphical font designer) on Java 5. Recently, I am running into "java.lang.OutOfMemoryError: Java heap space" error because I am not b …
2
votes
3answers
1k views
eclipse outOfMemoryError: heap space
Hi,
while running junit tests I always seem to run into the above error. I have monitored eclipse with JConsole and heap memory peaks at about 150MB and yet I have set heap memory …
2
votes
6answers
913 views
Java heap space in netbeans.. but I’ve increased the heap size already!
I'm having an issue with netbeans and Java. My program needs to be able to cope with large files being uploaded via an arraylist. So I used -Xmx512m to increase the maximum heap si …
2
votes
7answers
577 views
Big XML file and OutOfMemoryError
Hello,
I’m trying to parse a XML file up to 500 mb in java. I tried to use SAX but it gives me this error
java.lang.OutOfMemoryError: Java heap space
at com.sun.org.apache. …
6
votes
4answers
384 views
Coping with, and minimizing, memory usage in Common Lisp (SBCL)
I have a VPS with not very much memory (256Mb) which I am trying to use for Common Lisp development with SBCL+Hunchentoot to write some simple web-apps. A large amount of memory a …
2
votes
7answers
336 views
OutOfMemoryError - why can a waiting Thread not be garbage collected?
This simple sample code demonstrates the problem. I create an ArrayBlockingQueue, and a thread that waits for data on this queue using take(). After the loop is over, in theory bot …
1
vote
6answers
3k views
java.lang.OutOfMemoryError: Java heap space with NetBeans
This is the error I get when I run my web application using NetBeans (using servlets). To fix this I even changed the heap size in netbeans.conf, but still it shows the same error. …
0
votes
0answers
171 views
How to export large data to excel across some 25 sheets in a single work book using java without Outofmemory exception?
Hello, I have a problem with Swing GUI which automatically closes when we run export to excel operation with more than one time continuously.
The operation consists some 25 tabs d …
