Spring boot mybatis 환경파일 설정
application.ymlmybatis: # 환경설정 파일 위치 설정 config-location: classpath:mybatis-config.xml # mapper 위치 설정 mapper-locations: mapper/*.xml # VO Class 패키지명 # 없어도 되지만, 없는 경우 mapper의 resultType에서 패키지명을 모두 기술해줘야 함 type-aliases-package: {클래스 패키지명}mybatis-config.xml # 컬럼의 '_'를 제거하기 위해서 적용 # 예) abc_def --> abcDef
2024.08.14