taylor 2004/08/17 18:14:33
Modified: portal/src/java/org/apache/jetspeed/engine
AbstractEngine.java
Log:
adjusting OJB class loader should be above spring component init
CVS: ----------------------------------------------------------------------
CVS: PR:
CVS: If this change addresses a PR in the problem report tracking
CVS: database, then enter the PR number(s) here.
CVS: Obtained from:
CVS: If this change has been taken from another system, such as NCSA,
CVS: then name the system in this line, otherwise delete it.
CVS: Submitted by:
CVS: If this code has been contributed to Apache by someone else; i.e.,
CVS: they sent us a patch or a new module, then include their name/email
CVS: address here. If this is your work then delete this line.
CVS: Reviewed by:
CVS: If we are doing pre-commit code reviews and someone else has
CVS: reviewed your changes, include their name(s) here.
CVS: If you have not had it reviewed then delete this line.
Revision Changes Path
1.8 +7 -6
jakarta-jetspeed-2/portal/src/java/org/apache/jetspeed/engine/AbstractEngine.java
Index: AbstractEngine.java
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed-2/portal/src/java/org/apache/jetspeed/engine/AbstractEngine.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- AbstractEngine.java 2 Aug 2004 20:32:23 -0000 1.7
+++ AbstractEngine.java 18 Aug 2004 01:14:32 -0000 1.8
@@ -128,16 +128,17 @@
System.getProperties().setProperty(LogFactory.class.getName(),
Log4jFactory.class.getName());
+ // patch up OJB
+ ClassLoader ploader2 = this.getClass().getClassLoader();
+ //ClassLoader ploader2 = Thread.currentThread().getContextClassLoader();
+ ClassHelper.setClassLoader(ploader2);
+
//
// bootstrap the initable services
//
componentManager = initComponents(configuration, config);
log.info("Components initialization complete");
-
- // patch up OJB
- ClassLoader ploader2 = this.getClass().getClassLoader();
- ClassHelper.setClassLoader(ploader2);
-
+
//
// create the pipelines
//
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]