aspose file tools
The moose likes Java in General and the fly likes Exception in thread Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Exception in thread "http-bio-8080-exec-3"" Watch "Exception in thread "http-bio-8080-exec-3"" New topic
Author

Exception in thread "http-bio-8080-exec-3"

Sandeep Bhoyar
Greenhorn

Joined: May 17, 2010
Posts: 15

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)



$andybo
Rob Spoor
Sheriff

Joined: Oct 27, 2005
Posts: 19232

Sandeep Bhoyar wrote:Please let me know its urgent

Please EaseUp. There is no such thing as "urgent" around here.


SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
William Brogden
Author and all-around good cowpoke
Rancher

Joined: Mar 22, 2000
Posts: 12324
    
    1
Given the message showing the source:
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.....

hint

Bill


Java Resources at www.wbrogden.com
Paul Clapham
Bartender

Joined: Oct 14, 2005
Posts: 16487
    
    2

I don't see anything Tomcat-related in this post. It's more of a general Java question. So let's move it there...
Sandeep Bhoyar
Greenhorn

Joined: May 17, 2010
Posts: 15

@ 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 ?
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Exception in thread "http-bio-8080-exec-3"
 
Similar Threads
Getting error message - chapter 9 of ejb 3 in action using glassfish server 2.1
Hibernate Query Language Question (simple)
StringBuilder out of memory error
Exception in thread "domain1-StderrDrainer" java.lang.OutOfMemoryError: Java heap space
Heap Space