이번 포스트에서는 database에서 select로 조회한 내용을 java object 즉 DTO에 매핑하는 내용에 대해 다양하게 살펴보자. MyBatis의 조회 결과 매핑 방식 기본 매핑데이터베이스 테이블의 컬럼명과 DTO의 속성 명이 일치하면 자동으로 매핑이 된다. 이때 대소문자는 구별하지 않는다.select code, name, continent, region, surfacearea from country@Datapublic class Country { private String code; private String name; private String continent; private String region = ""; private Double surfaceArea ..
[MyBatis] 03. 조회 결과의 매핑
이번 포스트에서는 database에서 select로 조회한 내용을 java object 즉 DTO에 매핑하는 내용에 대해 다양하게 살펴보자. MyBatis의 조회 결과 매핑 방식 기본 매핑데이터베이스 테이블의 컬럼명과 DTO의 속성 명이 일치하면 자동으로 매핑이 된다. 이때 대소문자는 구별하지 않는다.select code, name, continent, region, surfacearea from country@Datapublic class Country { private String code; private String name; private String continent; private String region = ""; private Double surfaceArea ..
2023.06.18