JDBC: CRUD 모두 구현 and 캡슐화
package com.ledx.entity; import java.sql.Date; public class Notice { public Notice() { } public Notice(int id, String title, String writer_id, String content, Date regdate, int hit, String files) { this.id = id; this.title = title; this.writer_id = writer_id; this.content = content; this.regdate = regdate; this.hit = hit; this.files = files; } public int getId() { return id; } public void setId(..
Java
2021. 12. 4.