본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

JAVA/Spring

Annotation - @AllArgsConstructor

@AllArgsConstructor
클래스 내의 모든 필드를 매개변수로 받는 생성자를 자동으로 생성

import lombok.AllArgsConstructor;

@AllArgsConstructor
public class Person {
    private String name;
    private int age;
    private String address;
}
public class Main {
    public static void main(String[] args) {
        Person person1 = new Person("John", 30, "Seoul");
    }
}

'JAVA > Spring' 카테고리의 다른 글

Annotation - @NonNull  (0) 2023.04.20
Annotation - @Data  (0) 2023.04.20
Annotation - @EqualsAndHashCode  (0) 2023.04.20
Annotation - @Getter @Setter @ToString  (0) 2023.04.20
Annotation - @mapper @Select @Insert @Update @Delete  (0) 2023.04.20