Java 기초(실습)- AWS 풀스택 과정 57일차
목차1.실습 1. 실습▣ StudentMainpackage jdbcStudent;public class StudentMain { public static void main(String[] args) { new StudentController(); }} ▣ Studentpackage jdbcStudent;public class Student {// sno int auto_increment,// sid int not null,// sname varchar(50) not null,// birth varchar(20),// phone varchar(20),// address text,// regdate datetime default now() private int sno; private int sid; pr..