일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- spring DB Connection
- 자바버그수정
- Spring JPA Specification
- JPA DB 다중 Connection
- JpaRepository update
- 도커 컨테이너 로그
- vueslot
- 도커 로그 확인
- spring JPA DB multi Connection
- mapper annotationo
- spring @mapper
- repository annotation
- vuecomponent
- doker logs tail
- AllArgsConstructor
- Data Annotation
- Transactions Propagation Option
- spring repository
- 도커 logs
- @Builder @NoArgsConstructor
- CrudRepository update
- JAVA Exception 종류
- spring mapper
- spring mapper annotation
- spring JPA DB Connection
- JPA DB Connection 다중
- docker 로그
- NoArgsConstructor
- Spring
- Vue
- Today
- Total
목록전체 글 (33)
개발을 잘하고 싶은 개발자

출처 : https://salaryblues.tistory.com/3 https://en.wikipedia.org/wiki/Work_breakdown_structure 좋은 WBS를 작성하는 방법과 샘플 양식 공유(다운로드) WBS 개념 WBS란 Work Breakdown Structure의 약자로, 업무 분업 구조 또는 작업 분해 구조를 말합니다. 이는 프로젝트를 효율적으로 진행하기 위해 업무 일정을 계획하고 관리할 수 있는 가장 중요한 기초 salaryblues.tistory.com WBS가 뭐길래? WBS (Work Breakdown Structure) 그래도 눈으로 보이는 게 최고지? 이렇게 생겼다 정의는... 여기저기 달라 패쓰 ㅎ WBS의 역할 1) 프로젝트에서 수행할 업무를 식별 2) 일정과..
표준 예외를 알아보자 출처 : Clean Code 예외 경우 IIlegalArgumentException Null 이 아닌인자의 값이 잘못되었을 때 IIlegalSateException 객체 상태가 메서드 호출을 처리하기에 적절치 않을 때 NullPointException null 값을 받으면 안 되는 인자에 null이 전달되었을 때 IndexOutOfBoundsException 인자로 주어진 첨자가 허용 범위를벗어났을때 ConcurrentModicationException 병렬 사용이 금지된 객체에대한 병렬 접근이 탐지되었을 때 UnsupportedOperationException 객체가 해당 메서드를 지원하지 않을 때 ... .... 등등 매우 많다... 하지만 경우에 따라 표준 예외를 출력해 사용할..
출처 : https://www.daleseo.com/lombok-popular-annotations/#%EB%81%9D%ED%8C%90%EC%99%95-data [자바] 자주 사용되는 Lombok 어노테이션 Engineering Blog by Dale Seo www.daleseo.com @Data는 위에서 설명드린 @Getter, @Setter, @RequiredArgsConstructor, @ToString, @EqualsAndHashCode을 한꺼번에 설정해주는 매우 유용한 어노테이션입니다. 무려 이 6가지를 한 어노테이션에 다!! 클래스 레벨에서 "@Data" 어노테이션만 붙여주면, 모든 필드를 대상으로 접근자와 설정자가 자동으로 생성되고, final 또는 @NonNull 필드 값을 파라미터로 받는..
출처 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..
xml 기반의 mapper를 사용할 때 /* query */ 이런 식으로 mapper 태그 안에 쿼리를 넣어 사용한다 But, 방식으로 DB의 데이터를 객체로 매핑시켜 데이터를 접근하는 ORM 방식을 사용해보면서 @Mapper를 사용하게 되었다 https://codingnojam.tistory.com/27 여기 블로그에 아주 잘 설명을 해주셨고 많은 도움이 되어 참고를 해본다 https://mybatis.org/mybatis-3/ko/apidocs/index.html @Mapper의 API 문서를 찾아보니 Maker interface for MyBatis mappers 라고 한다 => "MyBatis 매퍼용 메이커 인터페이스" 그럼 MyBatis 문서에서 확인해 본다 https://mybatis.org/..
spring에서 쓰는 어노테이션의 종류는 매우 많다 오늘은 우선 '@Repository' https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/stereotype/Repository.html Repository (Spring Framework 5.3.9 API) Indicates that an annotated class is a "Repository", originally defined by Domain-Driven Design (Evans, 2003) as "a mechanism for encapsulating storage, retrieval, and search behavior which emulat..
리눅스 서버에서 log 파일을 vi, tail, cat 등등 명령어로 볼 줄은 알았지만 도커에 따로 docker logs가 있는 줄 몰랐다!! 나도 이제 도커 로그를 맘대로 다룰 줄 알게 되었어~ document https://docs.docker.com/engine/reference/commandline/logs/ docker logs docker logs: The `docker logs` command batch-retrieves logs present at the time of execution. > **Note** > > This command is only functional for containers that are started with the... docs.docker.com 사용법 $ d..