(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 처리 } } } |