Developer Cafe

@RequiredArgsConstructor 본문

Spring/어노테이션

@RequiredArgsConstructor

개발자 카페 2021. 3. 16. 16:37
728x90
@RequiredArgsConstructor
public class HelloResponseDto {

    private final String name;
    private final int amount;
}

● 선언된 모든 final 필드가 포함된 생성자를 생성해 줍니다.

● final이 없는 필드는 생성자에 포함되지 않습니다.

728x90

'Spring > 어노테이션' 카테고리의 다른 글

@Column, @NoArgsConstructor  (0) 2021.03.18
@Entity  (0) 2021.03.18
@WebMvcTest  (0) 2021.03.10
@RunWith(SpringRunner.class)  (0) 2021.03.10
@SpringBootApplication  (0) 2021.02.22
Comments