일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- vuecomponent
- JPA DB Connection 다중
- AllArgsConstructor
- CrudRepository update
- spring DB Connection
- NoArgsConstructor
- Vue
- Spring JPA Specification
- Spring
- 도커 logs
- Transactions Propagation Option
- spring mapper annotation
- 자바버그수정
- spring repository
- spring mapper
- JpaRepository update
- mapper annotationo
- 도커 로그 확인
- spring JPA DB Connection
- Data Annotation
- docker 로그
- vueslot
- repository annotation
- spring JPA DB multi Connection
- @Builder @NoArgsConstructor
- 도커 컨테이너 로그
- JPA DB 다중 Connection
- JAVA Exception 종류
- doker logs tail
- spring @mapper
- Today
- Total
목록Backend/Java (6)
개발을 잘하고 싶은 개발자
출처 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..
참고 https://futurecreator.github.io/2018/08/26/java-8-streams/ 오늘은 스트림 중 배열과 컬렉션 스트림에 대해 정리해 본다 스트림 Streams 란? 자바 8에서 추가한 스트림(Streams)은 람다를 활용할 수 있는 기술 중 하나입니다. 자바 8 이전에는 배열 또는 컬렉션 인스턴스를 다루는 방법은 for 또는 foreach 문을 돌면서 요소 하나씩을 꺼내서 다루는 방법이었습니다. 간단한 경우라면 상관없지만 로직이 복잡해질수록 코드의 양이 많아져 여러 로직이 섞이게 되고, 메소드를 나눌 경우 루프를 여러 번 도는 경우가 발생합니다. 스트림은 '데이터의 흐름’입니다. 배열 또는 컬렉션 인스턴스에 함수 여러 개를 조합해서 원하는 결과를 필터링하고 가공된 결과를 ..