일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- JPA
- org.apache.ibatis.binding.BindingException
- 김영한JPA
- anyMatch
- HTTP3
- 매핑정보가없는필드
- DB방언
- fixedDelay
- 네이버로그인API
- 캐쉬가능
- RFC723x
- KAKAOLOGINAPI
- 네이버 연결된 서비스
- 자바ORM표준프로그래밍
- 멱등활용
- 데이터베이스 방언
- Git
- 무상태프로토콜
- SpringBoot
- http
- initialDelay
- gitreset
- HTTPMESSAGE
- hibernate.dialect
- Transaction not successfully started
- @Table
- gitrevert
- Invalid bound statement (not found)
- @Entity
- ERROR TYPE : org.apache.ibatis.binding.BindingException
Archives
- Today
- Total
목록IT/SpringBoot (10)
twocowsong
@Data
@Data는 정말간편하다. Class의 Getter, Setter를 만드는데 @Data 한줄이면 이만큼 편리한게 없다. 허나 @Data도 모르고 막사용하면 원치않는경우에 잘못된 사용방법으로 문제가 될수있다. @Data public class Car { private String carName; private int speed; private int gear; } Car 클래스가 존재 할경우 @Data는 정말 많은것을 해준다. 컨트롤러, 서비스 등 다른곳에서 사용할경우 Getter, Setter, toString 정도를 사용할것으로 예상한다. 허나 @Data 그외에 많은것을 더 포함하고있다. @Data 구성 @ToString @Getter : 모든 필드 @Setter : 정적 필드가 아닌 모든 필드 @Re..
IT/SpringBoot
2022. 1. 18. 21:36
@Value 어노테이션
@Value어노테이션은 스프링빈에 등록된 객체에 기본값을 부여할수있다. @Component public class Car{ @Value("10") public int speed; } 위처럼 Car Class @Value에 10으로 주면 기본값이 10으로 출력된다. @Component public class Car{ @Value("${test.value}") public int speed; } application.properties test.value=100 @Value에 ${properties값}으로 설정하여 사용도가능하다.
IT/SpringBoot
2022. 1. 18. 21:06