Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Spring JPA
- spring builder
- Spring Controller return
- step 테이블
- react link
- 텍스트가 많은 경우
- javascript 함수
- Spring DTO
- editor Quill
- springbatch
- react
- spring security
- Docker Windows 설치
- JPA Insert
- react jsx if
- springbatch chunk
- 코드 중복제거
- react react-router-dom v6
- JPA Update\
- Javascript
- spring
- react quill custom
- Spring Entity
- Spring CORS
- javascrpit 기초
- SpringBatch 스키마
- javascript 기초
- react Page
- react Quill
- react forwardRef
Archives
- Today
- Total
목록lombok 어노테이션 (1)
천천히 알아보는 코딩공부
[Spring] Lombok 자주 사용하는 어노테이션 정리
@Getter/@Setter 필드에 @Getter나 @Setter를 붙인다면, lombok이 해당 필드에 대한 기본 getter/setter를 생성해줍니다. @Getter @Setter public class BoardDTO { // TB_BOARD private Long idx;// 번호(PK) private String title;// 제목 private String content;// 내용 private String writer;// 작성자 private int viewCnt;// 조회수 private String noticeYn;// 공지 여부 private String secretYn;// 비밀 여부 private String deleteYn;// 삭제 여부 private LocalDateTim..
Java/SpringBoot
2022. 12. 2. 14:02