attempted to return null from a method with a primitive return type (int)

2014. 9. 19. 09:33공부/MYBATIS

스프링 / mybatis 를 써서 개발하다보니.. 살다살다 보지 못했던 여러 오류들을 만나고 있음...


그 중 하나.. 



 attempted to return null from a method with a primitive return type (int).



테이블 리스트의 페이지를 나누기 위해, 전체 건수를 count(*) 해서 리턴하는 SQL문을 호출하다 발생한 에러..


xxxMapper.java 파일의 getTotalCount() 의 return type 을 int 로 해서 발생...


이유는 count(*) 할 때,  혹은 max(column_name) 등을 할 때.. null 이 발생하는 경우가 있음..


int 는 null 을 매핑할 수 없으므로.. 위와 같은 exception 이 발생....


따라서


public int getTotalCount() 라고 인터페이스를 작성한 것을

public Integer getTotalCount() 라고 변경하면.. null 이 나와도 매핑이 됨..



고쳐야 할 코드가 한 움큼이네.. ㅠㅠ