Wiki source code of JBoss Installation

Version 15.1 by Vincent Massol on 2011/05/03

Show last authors
1 These instructions are for [[JBoss Application Server>>http://labs.jboss.com/jbossas/download]] 4.0.X.
2
3 * Download and install JBoss Application Server . It's usually as simple as unzipping it in a directory. Let's call this directory ##$JBOSS_HOME##.
4 * (optional) By default JBoss runs on port 8080. If you want to modify the port on which JBoss is running, edit ##$JBOSS_HOME/server/<mode>/deploy/jbossweb-tomcat55.sar/server.xml##. Search for ##8080## and replace with the port value you wish to use. Similarly change the port in ##$JBOSS_HOME/server/<mode>/deploy/http-invoker.sar/META-INF/jboss-service.xml## to the value you like.
5 * Copy and expand the XWiki WAR into a directory named ##xwiki.war/## (note that unlike most servlet containers JBoss wants the directory name to end with ##.war##) in ##$JBOSS_HOME/server/<server configuration>/deploy## where ##server configuration## is the JBoss configuration you're using.
6
7 = Classloading Isolation =
8
9 The default JBoss behavior is that classes inside of the ##WEB-INF/classes## and ##WEB-INF/lib## directories of the WAR file are incorporated into the default shared class loader repository. This allows classes and resources to be shared between web applications. However this means that JARs provided by XWiki in ##WEB-INF/lib## will get mixed with JARs provided by JBoss and if both application provide the same JAR but in a different version, class incompatibilities will occur.
10
11 To solve this, please read up on [[JBoss ClassLoading Configuration>>http://community.jboss.org/wiki/ClassLoadingConfiguration]] in order to configure JBoss to not use the unified class loader (set ##UseJBossWebLoader## to ##false## in ##META-INF/jboss-service.xml##).
12
13 Alternatively you may try to remove the clashing JARs from XWiki's ##WEB-INF/lib## hoping that the version provided by JBoss is compatible with XWiki's needs.
14
15 = Log4j Error =
16
17 {{warning}}It was reported that with XWiki 1.6 and JBoss 4.0.4, these settings change would generate an error with hibernate. Everything seems to work fine without these settings including classloading of log4j{{/warning}}
18
19 * Edit ##$JBOSS_HOME/server/<server configuration>/jbossweb-tomcat55.sar/META-INF/jboss-service.xml## file and replace:
20
21 {{code}}
22 <attribute name="Java2ClassLoadingCompliance">false</attribute>
23 <attribute name="UseJBossWebLoader">false</attribute>
24 {{/code}}
25
26 with:
27
28 {{code}}
29 <attribute name="Java2ClassLoadingCompliance">true</attribute>
30 <attribute name="UseJBossWebLoader">true</attribute>
31 {{/code}}
32
33 This is to avoid class loading issues for Log4J library. Refer http://lists.xwiki.org/pipermail/users/2007-September/008503.html for more information.
34
35 = Configuration XWiki to use a JBoss DataSource =
36
37 * Uncomment the ##resource-ref## section in XWiki's ##web.xml## file.
38 * Modify XWiki's ##WEB-INF/hibernate.cfg.xml## file to tell Hibernate to use a DataSource rather than a direct JDBC connection
39 * Copy the attach:jboss-web.xml file to XWiki's ##WEB-INF/## directory

Get Connected