MyBatis를 사용할 때 sql에 parameterType 또는 resultType의 값으로 VO, DTO 클래스들을 넘길 때, 패키지 경로까지 모두 써야 하는 불편함이 있습니다. 예를 들어 다음과 같습니다. 1) User.java package com.example.demo; import lombok.Getter; import lombok.Setter; @Getter @Setter public class User { private String userId; private String userName; } 2) UserMapper.xml select * from tb_user where user_id = #{userId} select * from tb_user 간단한 설정으로 Class명만 입력하게 할..