본문 바로가기

분류 전체보기

이클립스 버전별 git 설치법 이클립스 버전별 git 플러그인 선택 http://hermeslog.tistory.com/m/post/258 참조 더보기
Custom ClassLoader 1. Title : Custom ClassLoader 2. Purpose : ClassLoader Customizing 하기 3. function : 1) 각 폴더 마다 classLoader 생성 2) Hot - deploy 기능 ( 구현중 ) 4. Algorithm : 5. Supplement point : 6. Source : 더보기
Excel을 읽어들여 Source Generation 1. Title : Excel import and source generation 2. Purpose : 엑셀을 읽어들여 자바 Source 생성 확장성을 위해 Properties로 관리. 3. function : 4. Algorithm : 5. Supplement point : 6. Source : 더보기
JAXB Example 1. Title : JAXB Example 2. Purpose : Check a packageName ( Codeinspection ) compare packageName to defined applicationLevel (lv1, lv2, lv3) 3. function : 1) marshall (object to xml) 2) unmarshall (xml to object) - sort function ( alphabet asec ) 4. Algorithm : 1) unmarshl 할 때 sort 한 뒤 이진 검색으로 packageName과 application level을 비교할려고 함. 시간 복잡도 log2N 3승으로 기대. (만약 이진검색 안쓰고 그대로 했을시 n 의 3승이 됨.)그러나 문제는 각.. 더보기
파일 수정 Shell Program 1. Title : 파일 수정 Shell Program 2. Purpose : 파일의 특정 내용을 수정하는 프로그램 3. 사용법 : 1) sh modifyFile.sh 명령어를 입력하면 필수 아규먼트와 옵션 아규먼트 안내가 나온다. 2) 설명대로 아규먼트를 넣어주면 실행이 됨. 3) 변경할 내용이 중복이면 변경할 내용의 특정행을 입력하도록 설정 4. Supplement point : 1) Backup 기능 2) 변경할 내용이 없을 때 예외 처리 modifyFile.sh #!/bin/ksh ### include shell ### . ./help.sh . ./util.sh #================================== Variable count=0 #======================.. 더보기
log4j, slf4 설정 ( Source 있음 ) http://aquua.tistory.com/166 * 추가 내용 (2014-12-24) 이거 다시 써보니까 log4j.xml 설정을 못가져온다. 왜그런가 했더니 log4j.xml 이 ClassPath에 걸려있어야한다. 설정 방법은 프로젝트 -> Properties -> Java Build Path -> Source -> conf (log4j.xml 파일이 있는 위치) 추가 이렇게 하면 log4j.xml 설정이 먹힘. 더보기
ssh 비밀번호 없이 접속(공개키, 개인키 사용) http://opentutorials.org/module/432/3742 위에 대로 따라했는데도 안된다? 그럼 밑에 퍼미션을 주면 된다. $ chmod go-w $HOME $HOME/.ssh $ chmod 600 $HOME/.ssh/authorized_keys $ chown `whoami` $HOME/.ssh/authorized_keys 더보기