User development,

The document "JBossToolsTroubleShootingFAQ", was updated Jan 20, 2010
by Max Andersen.

To view the document, visit:
http://community.jboss.org/docs/DOC-10801#cf

Document:
--------------------------------------------------------------
h2. JBoss Tools Trouble Shooting FAQ
 
h3. Read this before adding an entry
This FAQ is intended to provide information on JBoss Tools (and Eclipse in 
general) trouble shooting.
-
----
 
*Q : The plugins does not seem to be loaded or active after installation*
 
*A* : This can unfortunately happen if either some steps in the installation 
failed, Eclipse is somehow misconfigured or there are some conflicting plugins 
installed.
 
To find out why plugins are not being loaded try and start eclipse with the 
-debug flag on the command line. Now Eclipse will log what plugins/bundles are 
not being loaded. You can open the "Error Log View" or look directly in 
.metadata/log for the information.
 
-
----
 
*Q : Eclipse is running out of memory OR Eclipse is running very slow!*
 
*A* : Eclipse default setup is to use 64mb of memory and that works ok for 
small number of projects; but if you have more projects and/or using many 
plugins Eclipse would like to use more memory and hence its behavior will be 
slower operations (because of too much garbage collection or simply halting 
because it runs out of memory).
 
The solution is to start eclipse with a set of flags to allow it to allocate 
more memory:
 
eclipse -vmargs -Xmx1024m -XX:MaxPermSize=128m
 
The above will allow it to use up to 1Gb of memory (you can of course lower it 
if you want, but this is what I use  and finally it will also increase the 
MaxPermSize so classloading is given more room.
 
-
----
*Q: My deployment need to be present when starting up the server, but it looks 
like my .sar archives are only deployed after the server is running. How do I 
make sure the server sees it while starting up ?*
 
This is probably because the server adapter is deploying into a metadata 
location in the  workspace and that metadata location is only added as a 
deployable  location via JMX after bootup. 

You can still make your server deploy to a specific location inside the  
automatically-added location (aka the deploy folder) by opening the  Server 
Editor (double-click the server) and changing the preferences there.
 
Note: 90% of deployments don't need this but some others do, like some .sar 
deployments.

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


_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to