develog

Spring 테스트 Log4j 초기화 본문

Dev/Java

Spring 테스트 Log4j 초기화

냐옴 2013. 12. 11. 15:07

import org.springframework.util.Log4jConfigurer;


public void initLog4j() {

    try {

        Log4jConfigurer.initLogging("file:WebContent/WEB-INF/log4j.properties");

    } catch (FileNotFoundException e) {

        

    }

}

'Dev > Java' 카테고리의 다른 글

iBatis, remapResults="true"  (0) 2014.01.16
System.out 파일로 출력  (0) 2013.12.11
Quartz test  (0) 2013.12.11
jndi test 2  (0) 2013.12.11
applicationContext.xml, sqlMapConfig, configLocation (classpath or file)  (0) 2013.12.09
Comments