@Data
@Getter @Setter @EqualsAndHashCode @AllArgsConstructor을 포함한
Lombok에서 제공하는 필드와 관련된 모든 코드를 생성
import lombok.Data;
@Data
public class Person {
private String name;
private int age;
private String address;
}
https://standout.tistory.com/491
https://standout.tistory.com/492
https://standout.tistory.com/493
'JAVA > Spring' 카테고리의 다른 글
Annotation - @RequiredArgsConstructor (0) | 2023.04.20 |
---|---|
Annotation - @NonNull (0) | 2023.04.20 |
Annotation - @AllArgsConstructor (0) | 2023.04.20 |
Annotation - @EqualsAndHashCode (0) | 2023.04.20 |
Annotation - @Getter @Setter @ToString (0) | 2023.04.20 |