일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- mapper annotationo
- Spring JPA Specification
- 도커 로그 확인
- spring DB Connection
- vuecomponent
- vueslot
- Spring
- spring repository
- doker logs tail
- JpaRepository update
- repository annotation
- AllArgsConstructor
- Data Annotation
- @Builder @NoArgsConstructor
- Vue
- Transactions Propagation Option
- 도커 컨테이너 로그
- spring @mapper
- spring mapper
- 도커 logs
- JPA DB Connection 다중
- spring mapper annotation
- spring JPA DB multi Connection
- JAVA Exception 종류
- docker 로그
- 자바버그수정
- spring JPA DB Connection
- NoArgsConstructor
- JPA DB 다중 Connection
- CrudRepository update
- Today
- Total
목록AllArgsConstructor (2)
개발을 잘하고 싶은 개발자
참고 https://projectlombok.org/features/Builder https://projectlombok.org/features/constructor @Builder와 @NoArgsConstructor를 같이 사용하면 @Data @Builder @NoArgsConstructor @Entity @Table(name = "TEST") public class test { @Id private long seq; private String n1; private String n2; } 이렇게 사용하면 아래와 같은 오류를 출력한다 error: constructor OrderUpload in class OrderUpload cannot be applied to given types; @Builder ^..
출처 https://www.daleseo.com/lombok-popular-annotations/#%EC%83%9D%EC%84%B1%EC%9E%90-%EC%9E%90%EB%8F%99-%EC%83%9D%EC%84%B1 [자바] 자주 사용되는 Lombok 어노테이션 Engineering Blog by Dale Seo www.daleseo.com @NoArgsConstructor @RequiredArgsConstructor @AllArgsConstructor public class User { private Long id; @NonNull private String username; @NonNull private String password; private int[] scores; } 생성자 자동 생성 Lom..