1, in the process of jbossesb-4.6 and jboss-4.2.3.GA integration, the path under the Windows platform need to pay attention to the front with "/", the following format:
Org. jboss.esb. server. Home =/D:/Server/jboss-4.2.3.GA
Org. JBoss. ESB. server. Config = default
Org. JBoss. ESB. tomcat. Home =/D:/Server/tomcat5520
2. When installing Quickstart, In the jbossas Console window, when a similar error such as "workthread" Java. Lang. outofmemoryerror: permgen space occurs, modify the jbossas startup parameter. Modify in run. BAT:
Set java_opts = % java_opts %-xms128m-xmx512m-XX: maxnewsize = 256 m-XX: maxpermsize = 256 m
Permgen space stands for permanent generation space, which refers to the permanent storage area of the memory outofmemoryerror: permgen space is actually out of memory, and the solution must be to increase the memory. This part is used to store class and meta information. When the class is loaded, it is placed in the permgen space area, which is different from the heap area where the instance is stored, GC (garbagecollection) will not ProgramPermgen space is cleaned up during runtime. Therefore, if your app loads many classes, the permgen space error may occur. This error is common when the web server pre-compile the JSP.
-Xms256m-xmx256m-XX: maxnewsize = 256 m-XX: maxpermsize = 256 m
3. To be continued --