JSP의 4가지 영역
-
day45 - JSP(jdbc 연결, JSP의 4가지 영역, EL Object)KIC/JSP 2021. 8. 19. 00:29
[Book 프로젝트] [Book.java] package book; public class Book { private String writer; private String title; private String content; public Book(String writer, String title, String content) { super(); this.writer = writer; this.title = title; this.content = content; } public String getWriter() { return writer; } public void setWriter(String writer) { this.writer = writer; } @Override public String toS..