Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We have multiple webapps running in our container (Tomcat 6/7) and each webapp configures its own application-specific logging (to different log files). There are certain events we need logged to a central log shared by all webapps.

We use JNDI to look up a datasource configured in Tomcat; is it possible to do the same thing with a logger, so when each web application starts it retrieves the shared container-level logger?

share|improve this question
Generally objects have to be Serializable to go into JNDI which may cause you some problems. – pauli Oct 13 '11 at 16:32

1 Answer

up vote 1 down vote accepted

I would think it should be possible, though I have not tried it myself. The logger is a Java object and you can store any Java object in a store that JNDI is aware of and JNDI should be able to retrieve it.

share|improve this answer
I'm not sure, though, if a logger returned to the webapp via JNDI would even log to the server's logger or just end up using the webapp's logger. – Paul Oct 14 '11 at 12:33
Right answer to my question, but it's a pretty useless question :) – Paul Oct 14 '11 at 21:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.