외부 데이터 연동 시,Boolean 타입의 변수가 null로 오는 경우가 있습니다. ... 뭐... 뭘까??? 이럴 때,Boolean에 대한 null 예외 처리하는 로직이 없다면,당연히 null exception이 나오게 되겠죠. 고뤠서, 아주 간단하게 이를 해결할 수 있는 방법을 소개할까 합니다. ○ BooleanUtils 사용방법은 이렇습니다. import org.apache.commons.lang3.BooleanUtils;~~Boolean testVal;~~if(BooleanUtils.isTrue(testVal)){ //testVal가 true일 때 실행o //null, false일 때 실행x} BooleanUtils.isTrue() 면 끝입니다.(이외에도 i..