Mybatis 연동하기
0. Mybatis Plugin 다운받기 (사전준비) [Help] - [Eclipse Marketplace] 에서 Mybatipse 를 검색해 설치한다. 1. board-mapping.xml 만들기 src/main/resources 밑에 mappings 패키지를 하나 생성하고 [New] - [Other] - [Mybatis Mapper] 로 board-mapping.xml 을 만들어 준다. 내용은 다음과 같다. 자유롭게 sql문을 변경해 사용하면 된다. insert into board(seq, title, writer, content)value((select nvl(max(seq),0)+1 from board), #{title}, #{writer}, #{content})update voard set ti..