반응형
klocwork

CheckStyle
- a development tool to help programmers write Java code that adheres to a coding standard

FindBugs™
- Find Bugs in Java Programs

PMD
- PMD scans Java source code and looks for potential problems like:
1) Possible bugs - empty try/catch/finally/switch statements
2) Dead code - unused local variables, parameters and private methods
3) Suboptimal code - wasteful String/StringBuffer usage
4) Overcomplicated expressions - unnecessary if statements, for loops that could be while loops
5) Duplicate code - copied/pasted code means copied/pasted bugs

출처 - http://302.pe.kr/295

반응형

'공부거리 > JSP' 카테고리의 다른 글

ArrayList 안에 HashMap 넣어쓰기(HashMapList??)  (0) 2012.09.11
text 파일 작성하기  (0) 2012.09.10
java 형변환 모음  (0) 2012.01.10
DATE 현재시간 및 하루전 시간  (0) 2011.12.21
간단 게시판 리스트 출력 소스  (0) 2011.12.19

+ Recent posts