java:integratinglogconfigurationinspring
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
java:integratinglogconfigurationinspring [2011/11/17 10:59] – [Step two: configure the bean in Spring] rlunaro | java:integratinglogconfigurationinspring [2022/12/02 21:02] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Integrating Log Configuration in Spring ====== | ||
+ | |||
+ | ===== Background ===== | ||
+ | |||
+ | As many people out there, I **do** prefer to have my configuration of the log files in the same file as the rest of the configuration, | ||
+ | |||
+ | If you are using [[http:// | ||
+ | |||
+ | ===== First Step: create a LoggerConfiguratorBean ===== | ||
+ | |||
+ | You have to create a LoggerConfiguratorBean bean with one unique method called setConfiguration like this: | ||
+ | |||
+ | <code java> | ||
+ | package com.mypackage.util; | ||
+ | |||
+ | import java.util.Properties; | ||
+ | |||
+ | import org.apache.log4j.PropertyConfigurator; | ||
+ | |||
+ | public class LoggerConfiguratorBean | ||
+ | { | ||
+ | |||
+ | public void setConfiguration( Properties configuration ) | ||
+ | { | ||
+ | PropertyConfigurator.configure( configuration ); | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | As you may have guessed the '' | ||
+ | |||
+ | ===== Step two: configure the bean in Spring ===== | ||
+ | |||
+ | |||
+ | <code xml> | ||
+ | |||
+ | <bean id=" | ||
+ | class=" | ||
+ | scope=" | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | root logger configuration: | ||
+ | and them will be directed to the LOGFILE appender | ||
+ | | ||
+ | <prop key=" | ||
+ | <prop key=" | ||
+ | <prop key=" | ||
+ | <prop key=" | ||
+ | <prop key=" | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | ===== Step three: you are ready to use the log ===== | ||
+ | |||
+ | Believe it or not, you are now ready to use log. Unless you have configured lazy loading of classes or something like that (in that case you have to specify that this class have to be created and wired //yes or yes// | ||
+ | |||
+ | Here is an example of log integration: | ||
+ | |||
+ | <code java> | ||
+ | |||
+ | import org.apache.commons.logging.Log; | ||
+ | import org.apache.commons.logging.LogFactory; | ||
+ | |||
+ | |||
+ | /* | ||
+ | * Just a simple test of the logger | ||
+ | */ | ||
+ | @RunWith(SpringJUnit4ClassRunner.class ) | ||
+ | @ContextConfiguration(locations={" | ||
+ | public class LoggerTest | ||
+ | { | ||
+ | @Autowired | ||
+ | private ApplicationContext ctx; | ||
+ | |||
+ | // | ||
+ | //private static LogFactory logFactory; | ||
+ | private static Log log = LogFactory.getLog(LoggerTest.class); | ||
+ | | ||
+ | @Test | ||
+ | public void creationAndDestruction() | ||
+ | { | ||
+ | log.fatal( " | ||
+ | |||
+ | log.error( " | ||
+ | |||
+ | log.warn( "Warn: use of deprecated API's, poorly configured apis, etc. " ); | ||
+ | |||
+ | log.info( "Info: interesting runtime events" | ||
+ | |||
+ | log.debug( " | ||
+ | |||
+ | log.trace( " | ||
+ | |||
+ | System.out.println( " | ||
+ | } | ||
+ | |||
+ | } | ||
+ | |||
+ | </ | ||
+ | |||