일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- @Entity
- RFC723x
- @Table
- ERROR TYPE : org.apache.ibatis.binding.BindingException
- 멱등활용
- org.apache.ibatis.binding.BindingException
- 자바ORM표준프로그래밍
- Git
- HTTPMESSAGE
- anyMatch
- initialDelay
- SpringBoot
- Transaction not successfully started
- gitrevert
- DB방언
- HTTP3
- 김영한JPA
- fixedDelay
- 네이버 연결된 서비스
- 매핑정보가없는필드
- KAKAOLOGINAPI
- gitreset
- 데이터베이스 방언
- 무상태프로토콜
- 캐쉬가능
- 네이버로그인API
- JPA
- Invalid bound statement (not found)
- http
- hibernate.dialect
Archives
- Today
- Total
목록@value (1)
twocowsong
@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