| Author |
EJB + log4j
|
vidya sagar
Ranch Hand
Joined: Mar 02, 2005
Posts: 580
|
|
In my EJB application i want to configure log4j. 1)--> Where i want to place the log4j-config.xml in my jar file. 2)--> How to read the log4j-config.xml in my intializer class.
|
 |
Jaikiran Pai
Marshal
Joined: Jul 20, 2005
Posts: 8141
|
|
Log4j tries to configure itself by searching in its classpath for log4j.properties or log4j.xml file. If you place the log4j.xml file in the classpath of the application then you need not write any code to read the file. You can start using the logger as follows in your code: However if you still want to read/configure the log4j config file yourself in the application then have a look at the configure() method available on DOMConfigurator
|
[My Blog] [JavaRanch Journal]
|
 |
vidya sagar
Ranch Hand
Joined: Mar 02, 2005
Posts: 580
|
|
|
Thanks Jaikiran Pai, just now sucuessfully configured.
|
 |
 |
|
|
subject: EJB + log4j
|
|
|