본문 바로가기
반응형

 

db 컬럼은 보통 snake case로, Java 객체는 주로 camel case 로 사용하는데

서로 이름을 맞춰주지않는다면 가져올수가 없다.

 

그래서 쿼리문 alias 를 이용하여 맞춰줄수도 있지만 설정한줄을 통해 가능하다

 

 

application.yaml 또는 application.properties 에 다음과 같은 설정을 넣어주면 된다.

 

.yaml


mybatis:
  configuration:
    map-underscore-to-camel-case: true
   

 

.properties


mybatis.configuration.map-underscore-to-camel-case=true

 

728x90
반응형

한걸음 한걸음

개인적인 기록