@NoArgsConstructor
@RequiredArgsConstructor
@AllArgsConstructor
public class Student {
@NotNull
private Long studentId;
private String name;
private int age;
}

'Spring' 카테고리의 다른 글
| @Repository 어노테이션 (1) | 2023.02.27 |
|---|---|
| JPQL (0) | 2023.02.20 |
| JPA 연관관계 (0) | 2023.02.16 |
| Spring WebFlux - Annotated Controllers, URI Links (0) | 2023.02.12 |
| Spring Security (0) | 2023.02.05 |