Thread: [OJB-developers] finding the repository.xml on the file system
Brought to you by:
thma
From: David S. T. <da...@bl...> - 2002-03-31 19:07:21
|
PersistenceBrokerFactory.createPersistenceBroker("repository.xml"); Is there a way to find the repository.xml on the file system and not in the classpath? Currently I seem to only have the choice of putting the repository.xml on my classpath, and then it searches for it using loadResource thanks David |
From: David S. T. <da...@bl...> - 2002-04-01 08:13:23
|
Why do I get these messages? What kind of problems are there with Oracle8i.... WARN: problems with platform ojb.broker.platforms.Platform Oracle8iImpl: ojb.broker.platforms.PlatformOracle8iImpl WARN: OJB will use PlatformDefaultImpl instead |
From: Jakob B. <jbr...@ho...> - 2002-04-01 11:27:55
|
hi david, this is just a warning that there's no oracle specific platform class. ojb will work normally with the default platform. hth jakob ----- Original Message ----- From: "David Sean Taylor" <da...@bl...> To: <obj...@li...> Sent: Monday, April 01, 2002 10:16 AM Subject: [OJB-developers] Warning on Oracle > Why do I get these messages? > What kind of problems are there with Oracle8i.... > > WARN: problems with platform ojb.broker.platforms.Platform > Oracle8iImpl: ojb.broker.platforms.PlatformOracle8iImpl > WARN: OJB will use PlatformDefaultImpl instead > > > > > _______________________________________________ > Objectbridge-developers mailing list > Obj...@li... > https://lists.sourceforge.net/lists/listinfo/objectbridge-developers > |
From: Eric B. <EBi...@sa...> - 2002-04-01 19:01:51
|
Given the amount of confusion over this WARNing, and the fact that this behavior is expected and not problematic; I'd vote for this message to log at level INFO rather than WARN. -- Eric Bieschke ----- Original Message ----- From: David Sean Taylor <da...@bl...> To: <obj...@li...> Sent: Monday, April 01, 2002 12:16 AM Subject: [OJB-developers] Warning on Oracle Why do I get these messages? What kind of problems are there with Oracle8i.... WARN: problems with platform ojb.broker.platforms.Platform Oracle8iImpl: ojb.broker.platforms.PlatformOracle8iImpl WARN: OJB will use PlatformDefaultImpl instead |
From: Thomas M. <tho...@ho...> - 2002-04-02 19:52:24
|
Hi Eric, I came to the same conlusion! will be fixed in next release ! Thomas Eric Bieschke wrote: > Given the amount of confusion over this WARNing, and the fact that this > behavior is expected and not problematic; I'd vote for this message to log > at level INFO rather than WARN. > > -- Eric Bieschke > > > ----- Original Message ----- > From: David Sean Taylor <da...@bl...> > To: <obj...@li...> > Sent: Monday, April 01, 2002 12:16 AM > Subject: [OJB-developers] Warning on Oracle > > > Why do I get these messages? > What kind of problems are there with Oracle8i.... > > WARN: problems with platform ojb.broker.platforms.Platform > Oracle8iImpl: ojb.broker.platforms.PlatformOracle8iImpl > WARN: OJB will use PlatformDefaultImpl instead > > > > > _______________________________________________ > Objectbridge-developers mailing list > Obj...@li... > https://lists.sourceforge.net/lists/listinfo/objectbridge-developers > > > > |
From: Jakob B. <jbr...@ho...> - 2002-04-02 06:23:26
|
hi eric, i agree. the warning about the missing constructor "[DEFAULT] WARN: Please define a public constructor for class ..." should also be changed to INFO. jakob ----- Original Message ----- From: "Eric Bieschke" <EBi...@sa...> To: <obj...@li...> Sent: Monday, April 01, 2002 9:11 PM Subject: Re: [OJB-developers] Warning on Oracle > Given the amount of confusion over this WARNing, and the fact that this > behavior is expected and not problematic; I'd vote for this message to log > at level INFO rather than WARN. > > -- Eric Bieschke > > > ----- Original Message ----- > From: David Sean Taylor <da...@bl...> > To: <obj...@li...> > Sent: Monday, April 01, 2002 12:16 AM > Subject: [OJB-developers] Warning on Oracle > > > Why do I get these messages? > What kind of problems are there with Oracle8i.... > > WARN: problems with platform ojb.broker.platforms.Platform > Oracle8iImpl: ojb.broker.platforms.PlatformOracle8iImpl > WARN: OJB will use PlatformDefaultImpl instead > > > > > _______________________________________________ > Objectbridge-developers mailing list > Obj...@li... > https://lists.sourceforge.net/lists/listinfo/objectbridge-developers > |
From: Thomas M. <tho...@ho...> - 2002-04-02 19:52:57
|
Hi David, We use the loadResource() stuff to be J2EE compliant. As many people have problems with this approach we will allow file system lookup too. will be implemented in next release (coming this week). HTH, Thomas David Sean Taylor wrote: > PersistenceBrokerFactory.createPersistenceBroker("repository.xml"); > > > > Is there a way to find the repository.xml on the file system and not in > the classpath? > > > > Currently I seem to only have the choice of putting the repository.xml > on my classpath, and then it searches for it using loadResource > > > > thanks > > > > David > |