구)홈페이지 오탈자 보기
Blog2Book, 자바 성능을 결정짓는 코딩 습관과 튜닝 이야기

 

페이지오탈자 내용등록일
250

(50페이지 6번째 줄)

JVM에 따라서는 -Xingc라는 -> JVM에 따라서는 -Xincgc

2010-02-021
7114

(114페이지 두번째 코드 예제부분)

static {
  if(template == null) {
    try {
      template = Velocity.getTemplate("TemplateFileName");
    ] catch (Exception e) {
      //exception 처리
  }
}

--> 수정

static {
  if(template == null) {
    try {
      template = Velocity.getTemplate("TemplateFileName");
    } catch (Exception e) {
      //exception 처리
    }
  }
}

2008-04-091