return 타입이 만들어져 있는 경우에는
2017.09.06
그럼 이번에는 return 타입이 만들어져 있는 경우도 한번 공부 해봤다. 만들어져 있어야 되기 때문에 vo부터 생성한다. vo 작성 public class ProductVO { private String name; // 상품명 private double price; // 가격 // 생성자와 set,get 출력을 위한 toString까지 생성해준다. public ProductVO(String name, double price) { super(); this.name = name; this.price = price; } public String getName() { return name; } public void setName(String name) { this.name = name; } public dou..