Emmanuel Bourg <[EMAIL PROTECTED]> writes:
>Henning P. Schmiedehausen wrote:
>>>new PropertiesConfiguration(locator.locate("config.properties));
>>
>> I don't like that much. Once the locator has run, it has run. Passing
>> the locator object allows the implementor to catch all the calls to
>> locate() and maybe react differently.
>I'm not sure to see the need, do you have a real use case in mind ?
An idea that popped up was the "versioning locator" mentioned in the
reply to Oliver.
>> How about wrapping the name of the configuration file / the
>> configuration parameters into the locator object:
>>
>> config = new PropertiesConfiguration (new FileLocator("config.properties"));
>> config = new PropertiesConfiguration (new
>> ClassPathLocator("config.properties"));
>>
>> config.load(new FileLocator("config.properties"));
>Hmm no because a locator is a strategy to find a resource, it doesn't
>define a resource, this is the role of the URL.
The filename might not be part of the strategy but it is vital to
locating the ressource. :-) Does it make sense to have a strategy
without a filename / a filename without a strategy (other than
defaults)? If no, then we will have to pull a pair of "resource name"
/ "Locator object") around anyway.
>> This would simplify the method signatures. We might even be able to
>> decouple things like JDBC and JNDI:
>>
>> config = new PropertiesConfiguration(new JDBCLocator(... jdbc params...));
>Is this really simpler than instanciating DatabaseConfiguration and
>JNDIConfiguration ? :)
It would reduce the number of C'tors and additional methods from the
Configuration implementations.
It might also reduce the duplication of code into classes. Having one
set of objects that define the contents of a configuration resource
(Properties, XML, whatever) and another set that defines the location
of the resource (File, Classpath, JNDI, JDBC) seemed natural to
me. Maybe just a brain fart.
Regards
Henning
--
Dipl.-Inf. (Univ.) Henning P. Schmiedehausen INTERMETA GmbH
[EMAIL PROTECTED] +49 9131 50 654 0 http://www.intermeta.de/
RedHat Certified Engineer -- Jakarta Turbine Development -- hero for hire
Linux, Java, perl, Solaris -- Consulting, Training, Development
What is more important to you...
[ ] Product Security
or [ ] Quality of Sales and Marketing Support
-- actual question from a Microsoft customer survey
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]