Re: Where to store application settings

2005-03-25 Thread Craig McClanahan
On Fri, 25 Mar 2005 18:35:12 + (UTC), John Brayton <[EMAIL PROTECTED]> wrote: > Laurent free.fr> writes: > > I have a few settings in my webapp (address of the LDAP server, location > > of 2 or 3 files), which are in the source code at the moment. This makes > > it difficult to change them (an

Re: Where to store application settings

2005-03-25 Thread John Brayton
Laurent free.fr> writes: > I have a few settings in my webapp (address of the LDAP server, location > of 2 or 3 files), which are in the source code at the moment. This makes > it difficult to change them (and I have to recompile every time). I like to store settings that a system administrator w

Re: Where to store application settings

2005-03-25 Thread K.C. Baltz
There must be a dozen possible answers to this one. I can tell you what we do and say it works for us. We use a combination of settings methods. Some web settings go in the web.xml in a element. Things that are non-web specific go into the Java System Preferences. I was initially skeptical