Velocity toolbox를 사용한 Servlet & Velocity 의 연동 이번에도 기본적인 MVC모델로 Velocity toolbox를 이용하여 Person 모델에서 이름과 전화번호를 받아 벨로시티 파일에 뿌련주는 코드를 작성해 보았다. * Model package net.telbook.model; public class Person{ String name; String tel; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getTel() { return tel; } public void setTel(String tel) { this.tel = tel; } } - Model 똑같다.. * Controller package ne.. 더보기 이전 1 ··· 15 16 17 18 19 다음