I have configured log4j.properties in my application(EAR) as explained in the following article -->
http://planet.jboss.org/post/how_do_i_use_my_own_log4j_properties_or_xml_file_in_jboss
i.e., I have packaged jboss-app.xml to isolate the class loading as below.
After doing this,
JBoss is able to locate my custom log4j property file however it fails in my start up
servlet where i'm trying to locate the JBoss MBean server for registering my custom application specific mbeans. I hope the findMBeanServer method will try to locate the mbean server in the current class loader, as we have isolated the class loader is it creating the problem ?
The below piece of code used to work before adding jboss-app.xml.
Code snippet in my startup servlet is given below:
Can some one help me how to solve this ?
Note:- My goal is to setup my jboss instance with my custom log4j property file without affecting my startup servlet.