접기
1. 이클립스 환경설정.
2. code templetes > New Java files
3. Edit 버튼을 선택하고 기본 주석 설정과 로깅 처리를 위한 클래스를 임포트해준다.
4. Code Templates > Class body : 로그 코드를 작성한다.
5. 이제 클래스를 생성해보자.
6. 클래스를 생성해보자~!
7. 클래스 생성만으로 기본적인 주석과 로그 객체 생성이 완료되었다.
p.s > author 정보는 eclipse 폴더> eclipse.ini 파일에 추가한 것입니다.
-Duser.name=<a href='http://eknote.tistory.com' target='_blank'>edward</a>
접기
접기
-- New Java Files
${filecomment}
/*
* Copyright Edward by Comas.,
* All rights reserved.
*
* This software is the confidential and proprietary information
* of Comas Corp. ("Confidential Information").
*/
${package_declaration}
import org.apache.commons.logging.Log; // Logging 처리를 위한 import
import org.apache.commons.logging.LogFactory;
/**
* <pre>
* ${package_name}
* |_ ${file_name}
* </pre>
* @date : ${date} ${time}
* @version :
* @author : ${user}
*/
${typecomment}
${type_declaration}
-- Class Body
private static Log log = LogFactory.getLog(${type_name}.class);
> ${type_name}.class 대신에 this.getClass().getName() 을 넣어도 되겠죠~
접기