spring log4j 와 debug 설정 방법
pom.xml에 다음 코드를 추가 org.slf4j slf4j-simple 1.7.5 src/test/resources에 log4j.xml가 있다.여기를 열면 이 부분이 있는데 info라 적힌걸 debug로 고치면 debug모드로 동작을 한다. 컨트롤러 단에서 사용방법 private static final Logger logger = LoggerFactory.getLogger(이름Controller.class); // 이 코드를 위에 선언해주고 logger.info("Welcome to home"); // 일반적인 info에는 이렇게 logger.debug("xxxxxx{}" , String); // debug에서는 이렇게 사용한다. info로 고치면 debug에 썼던 것들이 보이지 않는다.
프로그래밍/spring
2017. 10. 10. 12:41