Spring 에서 queryForObject() (queryForMap() 도 결국 queryForObject() 를 호출하기 때문에 동일함)사용했는데, 쿼리 결과값이 1 이어야 하는데 실제 결과값은 0 일때 다음과 같은 에러가 발생한다.org.springframework.dao.EmptyResultDataAccessException: Incorrect result size: expected 1, actual 0 이 경우에는 try, catch 를 사용하면 해결 가능하다.import org.springframework.dao.EmptyResultDataAccessException;...String sql = new String("select uId from Users u where userId = ? l..