Location 데이터를 넣다가 자꾸 이상하게 매핑되서 문제점을 발견했다. @Getter@Embeddablepublic class Location { private double latitude; private double longitude; protected Location() {} public Location(double latitude, double longitude) { this.latitude = latitude; this.longitude = longitude; }} // MyBatis ST_Distance_Sphere( p.location, ..