기록해! 정리해!

MyBatis 사용하기 본문

SpringBoot

MyBatis 사용하기

zsuling 2022. 10. 11. 16:20

1. 새프로젝트 생성하기

2. application.properties

# 주석 ( none , servlet )
spring.main.web-application-type=servlet
server.port=8000

# 배너 OFF
spring.main.banner-mode=off 


# 오라클 컨넥션 정보
spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver
spring.datasource.url =jdbc:oracle:thin:@localhost:1521:xe
spring.datasource.username=system
spring.datasource.password=1234

# JSP 경로 설정
spring.mvc.view.prefix=/WEB-INF/view/
spring.mvc.view.suffix=.jsp


####  다중 mapper 설정하기
mybatis.mapper-locations=classpath:mapper/**/*.xml

 

- JSP 경로 설정

->> 폴더 생성해서 만들어주기.

이 밑에 jsp를 만들어서 사용하는 것

->> Run as config 하면 콘솔창 결과

3. index.html 만들기 (static에서 만듦)

<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
</head>
<body>
<div align=center>
<h2> MyBatis 프로젝트 </h2>
<h3> 게시판 만들기 </h3>
</div>
</body>
</html>

 

Comments