[Installation, Configuration & Deployment] - Re: Pb start jboss in windows service mode
by s_rupaal
Sanouk mentioned he is using the version "Release ID: JBoss [The Oracle] 5.1.0.GA".
In this release the strategy for VM configuration is bit complex from 5.0. The JAVA_OPTS are set to a nominal standard value by the run.conf.bat (which inturn is called via run.bat), value is set only if JAVA_OPTS are not set by any other means.
In Sanouk's case service.bat is setting JAVA_OPTS=-Xrs, hence it is not being changed by run.conf.bat as is visible from the logs:
JAVA_OPTS: -Dprogram.name=run.bat -Xrs -server
So in the absence of any memory arguments VM is giving the OutOfMemoryError.
To resolve you can apply two approaches & modify the service.bat appropriately:
Comment out the following so that they can be automatically be set via run.conf.bat.
rem set JAVA_OPTS=-Xrs
Or Specify the appropriate values for your memory requirements such as:
JAVA_OPTS=-Xrs -Xms256M -Xmx512M -XX:MaxPermSize=256M -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Dorg.jboss.resolver.warning=true
Regards
Sarabjit S. Rupaal
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4256692#4256692
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4256692
16 years, 7 months
[JBoss Tools Users] - Re: Jboss Tools for Seam
by max.andersen@jboss.com
"allforjava" wrote :
| 1. Generate only selective Seam Entity/Beans/Components from database. Instead of 'seam-gen'
|
We support both generation from database and entities.
If you by selective mean generate from a subset of the current entities then that is not available yet.
anonymous wrote :
| 2. Generate specific views [list/home/edit..etc] from seam Entity/components.
|
You mean only generate list and not home/edit and vice versa ?
No - what is your usecase if you have the feature from above ?
anonymous wrote :
| 3. Create modules for seam projects (instead of projects in Eclipse workspace).
|
| Eclipse workspace makes no difference and you can point to a separate location that is not inside the workspace.
|
| anonymous wrote :
| | With support for dev and prod environments as seam-gen console option.
| |
|
| We don't have specific support for this since the IDE cannot handle "dynamic filtering" to get complete files.
|
| You can of course just create that if you want.
|
|
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4256686#4256686
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4256686
16 years, 7 months