[Annotation] @Data

이주현·2022년 1월 18일
0

Annotation

목록 보기
4/5
post-thumbnail

@Data

  • @Data@Getter, @Setter, @RequiredArgsConstructor, @ToString, @EqualsAndHashCode 을 한번에 설정해주는 매우 유용한 Annotation 입니다.

예시


@Data
public class template {
    private String temp;
}

하기와 같이 동일하게 적용됩니다.


public class template {
    private String temp;
    
    public template(String temp) {
    	this.name = temp;
    }
    
    public String getTemp() {
    	return this.temp;
    }
    
    public void setTemp(String temp) {
    	this.temp = temp;
    }
    
    @Override public String toString() {
    	 return "" + this.getName() + "";
    }
    
    ...
    
}

@Data 참고 url

https://projectlombok.org/features/Data

profile
아직

0개의 댓글

Powered by GraphCDN, the GraphQL CDN