250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Oracle
- 플러그인
- #이클립스
- Spring
- 설정
- 스프링부트
- html
- springboot
- #eclipse
- Eclipse
- 소스코드 맵
- 환경설정
- #자바
- log4j
- #오라클
- #JVM
- log4j2
- 인텔리제이
- IntelliJ
- Plugins
- 오라클
- 이클립스
- Like
- mariadb
- #java
- CodeGlance
- 스프링
- 설치
- #자바가상머신
- #Oracle
Archives
- Today
- Total
커피와 개발자
Mybatis 적용 본문
728x90
Mybatis
Mybatis는 객체지향 언어인 자바의 관계형 데이터베이스 프로그래밍을 좀 더 쉽게 할 수 있게 도와주는 개발 프레임워크이며, 복잡한 JDBC 코드를 걷어내며 깔끔한 소스코드를 유지, 자바의 객체(Object)와 SQL 사이에서 자동 맵핑을 도와주는 프레임워크로 XML 형태로 쓰인 JDBC 코드라고 생각해도 될 만큼 JDBC의 모든 기능을 제공합니다.
pom.xml - dependency 적용 :
pom.xml 파일에 mybatis-spring-boot-starter dependency를 적용합니다.
application.yml - mybatis 설정 코드 추가 :
### mybatis
mybatis:
# xml파일 result type에 패키지명을 생략할 수 있도록 alias 설정
type-aliases-package: 프로젝트 패키지
configuration:
# model 프로퍼티 camel case 설정
map-underscore-to-camel-case: true
# Mybatis mapper 위치 설정
mapper-locations:
- mapper/**/*.xml
Sample 코드 구조 :
src
└ main
├ java
| └ std
| └ pjt
| └ springboot
| └ sample
| ├ controller // Controller java class
| ├ service // Service java interface
| └ impl // Service java class
| ├ mapper // Mapper java class
| └ vo // VO or DTO
└ resources
└ mapper
└ sample // SQL.xml
Smaple 코드 작성 :
728x90
'프로젝트 > Spring Boot' 카테고리의 다른 글
에러 페이지(Error page) (0) | 2022.10.11 |
---|---|
예외처리 (Exception Handling) (0) | 2022.10.11 |
DataBase 연동 (MariaDB, HikariCP) (0) | 2022.10.11 |
Argument Resolver 설정 (0) | 2022.10.11 |
jsonView 설정 (0) | 2022.10.11 |
Comments