★ 새 프로젝트 생성 New > Spring Starter Project - Name > boot-mybatis - Type > Maven - Packaging > Jar - Java Version > 11 - Language > Java - Group > com.test - Aritfact > boot-mybatis - Package > com.test.mybatis - srping boot version > 2.7.13 - Spring Web > 체크 - Oracle Driver > 체크 - MyBatis Framwork > 체크 - Lombok > 체크 ■ JSP 설정 1. pom.xml > 의존성 2개 추가 javax.servlet jstl org.apache.tomcat.embed tomcat-..
★ 새 프로젝트 New > Spring Legacy Project > Spring MVC Project > "MyBatisSimpleTest" > "com.test.simple" > Finish ■ 기초 셋팅 https://github.com/pinnpublic/class/wiki/%EC%8A%A4%ED%94%84%EB%A7%81-%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8-%EC%9D%BC%EA%B4%84-%EC%A0%81%EC%9A%A9 스프링 프로젝트 일괄 적용 수업. Contribute to pinnpublic/class development by creating an account on GitHub. github.com 1. pom.xml 셋팅 설정 2. ojdbc6.jar..
★ 프로젝트 생성 New > Spring Legacy Project > Spring MVC Project > "Code" > "com.test.code" > Finish - 기본 설정 + MyBatis ■ 데이터베이스 생성 create table tblCode ( seq number primary key, --번호(PK) subject varchar2(500) not null, --제목(설명) code varchar2(2000) not null, --코드조각 regdate date default sysdate not null, language varchar2(50) not null --언어 종류 ); create sequence seqCode; ■ 파일 생성 "com.test.controller" > C..