up vote 3 down vote favorite
share [g+] share [fb]

This is the error I get when I run my web application in an instance of the Tomcat servlet container started by NetBeans. To fix this I even changed the heap size in netbeans.conf, but still it shows the same error. How can I keep this from happening?

HTTP Status 500 - 

--------------------------------------------------------------------------------

type Exception report

message 

description The server encountered an internal error () that prevented it from fulfilling this request.

exception 

javax.servlet.ServletException: Servlet execution threw an exception
    org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:362)


root cause 

java.lang.OutOfMemoryError: Java heap space

note The full stack trace of the root cause is available in the Apache Tomcat/5.5.9 logs.
link|improve this question
the righter answer to this question is actually stackoverflow.com/questions/717550/…. The heavily upvoted answer is a good answer for a different question. – vkraemer Jun 15 '11 at 17:56
feedback

6 Answers

Changing the heap size in netbeans.conf only changes the heap for NetBeans itself, not for applications run through NetBeans.

The correct way is to right-click on the project and select "Properties" and then "Run"; there you can set the VM options appropriately (-Xmx256m, for instance). It should look something like this:

alt text (Thanks to VonC for finding this picture.)

link|improve this answer
True. +1. Although, would I have been the one writing this answer, I would have included the picture javapassion.com/handsonlabs/nbprofilermemory/index_files/… , from javapassion.com/handsonlabs/nbprofilermemory ;) (but that's just me: I always include picture) – VonC Apr 4 '09 at 18:32
"I always include picture": as you have noticed lately: stackoverflow.com/questions/707194#707206 (in the comments) – VonC Apr 4 '09 at 18:36
How do you find appropriate pictures, though? I tried to find a screenshot and couldn't. – Michael Myers Apr 4 '09 at 18:45
The problem is that,there is no VM options in the run category of the project properties.So,im struck up there again!! – divya Apr 5 '09 at 4:24
1  
I don't think this applies to Servlet Projects... only desktop projects. – James Schek Apr 7 '09 at 0:31
show 2 more comments
feedback

I'm guessing that increasing the memory won't fix the problem. What is that MonitorFilter doing? What's eating up all that memory?

Your best bet is to figure that out. If this is a web app, see if you can turn off that filter and run without it. If you have success, you know that the MonitorFilter is causing your to fail.

link|improve this answer
+1 - Sometimes I get so caught up in answering a question that I don't address the real problem. – Michael Myers Apr 4 '09 at 18:54
+1 OP should also definitely review that class for excessive object creation, etc. – Dana the Sane Apr 4 '09 at 18:58
@mmyers - +1 for you, because it happens to all of you. 8) – duffymo Apr 4 '09 at 19:10
s/you/us - man, I can't type today. – duffymo Apr 4 '09 at 19:11
feedback

If you increase the virtual memory of your Tomcat server then it will be OK.

Steps:

  1. In NB go through the windows menu and add Services
  2. You will find Tomcat in the services. Right click on Tomcat server and select Properties
  3. Go to the platform in the properties and write -Xms512m in VM options field
link|improve this answer
This answer describes how to reconfigure the Java process that NetBeans creates to run the Tomcat servlet container, which is the JVM that is running out of memory. – vkraemer Jun 15 '11 at 17:49
feedback

This has nothing to do with NetBeans (well, perhaps), rather it has to do with Tomcat. Tomcat is the process that is running out of heap, not NetBeans. Track down the startup process for your Tomcat. If it's bundled with NB, then Tomcat is buried within the NB installation, check for an "enterpriseN" directory, N being a number, Tomcat is probably in there and it's a rather generic distribution of it.

As to why the monitor is run OOM, that's hard to say, it's a pretty simple process when you think about it. You can also try disabling HTTP monitoring to see if it's a problem with the Monitoring itself or something with your application.

link|improve this answer
feedback

Why doesn't this work in NetBeans 5.5.1 ????

When I try to add -Xmx1028m to the VM options

ie. VM Options: -Xms128m -Xmx1024m ...etc.

When I run the program, I get the error in the output window:

init: deps-jar: run-single: jython: illegal option -- Xms128m usage: jython [options] [-jar jar | -c cmd | file | -] [args] Options and arguments: -i : inspect interactively after running script, and force prompts, even if stdin does not appear to be a terminal -S : don't imply import site' on initialization -v : verbose (trace import statements) -Dprop=v : Set the property prop' to value `v' -jar jar : program read from run.py in jar file -c cmd : program passed in as string (terminates option list) -W arg : warning control (arg is action:message:category:module:lineno) -E codec : Use a different codec the reading from the console. -Q arg : division options: -Qold (default), -Qwarn, -Qwarnall, -Qnew file : program read from script file - : program read from stdin (default; interactive mode if a tty) --help : print this usage message and exit --version: print Jython version number and exit args : arguments passed to program in sys.argv[1:] Java Result: -1 BUILD SUCCESSFUL (total time: 0 seconds)

Any ideas about what's going on ????

Thanks,

Jake

link|improve this answer
Looks like you're using the python early-access module? Anyway, this should be in its own question. – Michael Myers Apr 7 '09 at 17:53
feedback

do jython -J-Xmx1024m as it is mentioned in the help.

~/jython2.5.1/jython --help
Jython launcher options:
-Jarg    : pass argument through to Java VM (e.g. -J-Xmx512m)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown