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

여느 때처럼 복붙을 열심히 하다 중간중간 빌드해보지 않고 나를 너무 믿은 나머지 에러를 만났다. 에러 로그의 내용은 아래에 첨부했다. There is no READABLE property named 'meditype' in class java.lang.RuntimeException: Error occurred. Cause: com.ibatis.common.xml.NodeletException: Error parsing XML. Cause: java.lang.RuntimeException: Error parsing XPath '/sqlMapConfig/sqlMap'. Cause: com.ibatis.common.xml.NodeletException: Error parsing XML. Cause: java...
참고 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 ^..
표준 예외를 알아보자 출처 : 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 필드 값을 파라미터로 받는..