Index를 기반으로 Input과 Output JSP를 만들고 FrontController를 만듭시다 여러분 - Jo-young-jae/PersonProject GitHub Wiki

drop table person;

create table person_test( id number primary key, name varchar(20) not null, email varchar(100) not null );

create sequence person_id_seq start with 1, increment by 1, nomaxvalue, nocache;