Re: [Webwork-devel] loading log4j.properties
Brought to you by:
baldree,
rickardoberg
|
From: Victor S. <vsa...@ho...> - 2002-01-08 04:59:57
|
Matt, that's great... Although my suggestion would be to create a "ant
skeleton" target, that builds a bare-bones, no frills webwork dir structure.
A new user can take this structure and use it to build an app. Out of my
evangelizing process, the biggest problem people have encountered is setting
up initially. By making a skeleton, that burden is removed.
/V
>From: "Matt Baldree" <ma...@sm...>
>To: "Webwork-Developer" <web...@li...>
>Subject: [Webwork-devel] loading log4j.properties
>Date: Mon, 7 Jan 2002 19:40:40 -0600
>
>I was working on the JSP documentation and realized we need a configuration
>document to describe how to configure WW. I wrote this today and added it
>to
>CVS. One section in configuration talks about configuring WW's logger. I
>think the developer should be able to substitute the default
>log4j.properties under webwork/ with their own if they so choose. This
>means
>they could provide a log4j.properties under WEB-INF/classes that WW would
>first check before loading its default under webwork/. This allows the
>developer a clean log4j.properties substitution without having to
>programmatically do it somewhere else. To allow this capability, I propose
>changing the ServletDispatcher as follows:
>
>84c84,92
><
>PropertyConfigurator.configure(classLoader.getResource("webwork/log4j.proper
>ties"));
>---
> > try
> > {
> >
>PropertyConfigurator.configure(classLoader.getResource("log4j.properties"));
> > log.info("Custom log4j property file loaded.");
> > } catch (Exception e)
> > {
> >
>PropertyConfigurator.configure(classLoader.getResource("webwork/log4j.proper
>ties"));
> > log.info("Default log4j property file loaded.");
> > }
>
>Thoughts?
>
>-Matt
>
>
>
>_______________________________________________
>Webwork-devel mailing list
>Web...@li...
>https://lists.sourceforge.net/lists/listinfo/webwork-devel
_________________________________________________________________
Join the worlds largest e-mail service with MSN Hotmail.
http://www.hotmail.com
|