@NoArgsConstructor
매개변수가 없는 기본생성자를 자동으로 추가한다.
import lombok.NoArgsConstructor;
@NoArgsConstructor
public class Person {
private String name;
private int age;
// Getters and Setters
}
https://standout.tistory.com/492
https://standout.tistory.com/491
'JAVA > Spring' 카테고리의 다른 글
Dynamic web project Spring MVC패턴: Controller로 화면띄우기 (0) | 2023.11.01 |
---|---|
Annotation - @Builder (0) | 2023.06.25 |
Spring MyBatis와 MyBatis 의 차이 (0) | 2023.06.25 |
Spring Framework vs Spring Boot 차이 (0) | 2023.06.08 |
Spring 버전별 특징 (0) | 2023.05.10 |