Other articles


  1. [java] Object null check

    자바 객체 null 체크


    Objects.isNull(객체)


    객체가 null 이면 true,
    null 이 아니면 false 를 반환한다.


    for(PostVO postVO : postList) {
        ImageVO imageVO = imageService.doSelectMainImage(postVO);
        if(Objects.isNull(imageVO)) {
            //LOG.debug("************null****************");
            switch (postVO.getCategory()) {
            case "daily …
    read more

links

social