[spring] security 2. Board register 게시판 작성 + 저장
1. com.myweb.www.domain폴더에 BoardVO 생성 package com.myweb.www.domain; public class BoardVO { /* create table board ( -> bno bigint not null auto_increment, -> title varchar(200) not null, -> content text not null, -> writer varchar(100), -> reg_at datetime default now(), -> mod_at datetime default now(), -> read_count int default 0, -> primary key (bno) -> ); * */ private long bno; private String ..