[Spring] Entity 클래스에서 생성자, getter, setter를 선언하는 이유
2024. 7. 13. 22:41ㆍ프레임워크(Framework)/Spring
public class Member {
private Long id;
private String name;
private Grade grade;
public Member(Long id, String name, Grade grade) {
this.id = id;
this.name = name;
this.grade = grade;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Grade getGrade() {
return grade;
}
public void setGrade(Grade grade) {
this.grade = grade;
}
}
강의를 듣던 중 엔티티 클래스에 변수를 선언한 후 생성자, getter, setter를 선언하는 이유에 대해 궁금해져 공부하게 되었다.
이러한 이유는 객체 지향 프로그래밍의 기본 원칙과 관련이 있다.
1. 생성자
기본 생성자(Default Constructor)
public Member() {
// 기본 생성자
}
- 역할: 기본 생성자는 외부에서 아무런 인자 없이 객체를 생성할 수 있도록 한다.
- 이유: JPA나 Hibernate 같은 ORM 프레임워크는 객체를 생성할 때 리플렉션을 사용하기 때문에 기본 생성자가 필요하다. 이를 통해 프레임워크는 객체를 생성하고 필드를 설정할 수 있다.
매개변수가 있는 생성자(Parameterized Constructor)
public Member(String name, String email, String password) {
this.name = name;
this.email = email;
this.password = password;
}
- 역할: 필드 초기화, 객체 생성 시 필수 값을 설정
- 이유: 객체를 생성할 때 필요한 값을 바로 설정할 수 있도록 한다. 이를 통해 객체의 일관성을 유지하고, 필요한 데이터가 설정되지 않은 객체를 생성을 방지할 수 있다.
2. Getter와 Setter
Getter 메서드
public String getName() {
return name;
}
public String getEmail() {
return email;
}
public String getPassword() {
return password;
}
- 역할: 객체의 필드 값을 반환한다.
- 이유: 객체의 필드 값을 외부에서 읽을 수 있도록 한다. 캡슐화를 통해 객체 내부의 데이터를 직접 접근하지 않고, 메서드를 통해 접근할 수 있게 한다.
Setter 메서드
public void setName(String name) {
this.name = name;
}
public void setEmail(String email) {
this.email = email;
}
public void setPassword(String password) {
this.password = password;
}
- 역할: 객체의 필드 값을 설정한다.
- 이유: 객체의 필드 값을 외부에서 설정할 수 있도록 한다. 캡슐화를 통해 필드 값을 변경할 때 추가적인 로직(ex: 유효성 검사)을 표함할 수 있다.
'프레임워크(Framework) > Spring' 카테고리의 다른 글
[Spring] 스프링과 스프링 부트 (0) | 2024.08.10 |
---|---|
[Spring] 컨테이너에 등록된 빈 조회 방법 (0) | 2024.07.16 |
[Spring] Service를 Interface로 생성하는 이유 4가지 (0) | 2024.07.13 |
[Spring] IntelliJ Live template (0) | 2024.04.18 |
[Spring Boot] WebSecurityConfigurerAdpater 지원 안함 (0) | 2024.03.18 |