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