Spring 5.3.2 StringUtils.isEmpty deprecated

북마크 추가

isEmpty가 deprecated 되어 대체로는 StringUtils.hasText 또는 ObjectUtils.isEmpty로 대체 가능합니다.

사용상 주의점은 hasText의 겨우 조건이 반대로 됩니다.


StringUtils.isEmpty(null) = true;

StringUtils.hasText(null) = false;


StringUtils.hasText로 체크시 "", null 모두 사용 가능합니다.

AD
관리자
2021-01-08 21:28
SHARE