본문 바로가기

Dev/오류 해결 방법 정리

Request processing failed; nested exception is java.lang.NullPointerException

mockito 이용시 에러 발생

- 변경 전

Mockito.when(boraDomainService.getDomain(any())).thenReturn(resultMessage.success());

- 변경 후

Mockito.when(boraDomainService.getDomain(anyLong())).thenReturn(resultMessage.success());

 

원인

public ResultMessage getDomain(long domainIdx) {}