Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 스택
- 완전 탐색
- 게이트웨이
- Java
- spring boot
- Zuul
- 스프링 시큐리티
- 메모이제이션
- Logback
- 다익스트라
- 도커
- 유레카
- 이분 매칭
- Gradle
- 주울
- docker-compose
- dp
- 달팽이
- 트리
- Spring Cloud Config
- 비트마스킹
- spring cloud
- 구현
- ZuulFilter
- 서비스 디스커버리
- BFS
- 구간 트리
- 백트래킹
- 플로이드 와샬
- 이분 탐색
Archives
- Today
- Total
목록@Value (1)
Hello, Freakin world!
[Spring boot] @Value 에 대해서
import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.test.context.SpringBootTest; import static org.assertj.core.api.Assertions.assertThat; @SpringBootTest class ValuetestApplicationTests { @Value("Default") private String defaultValue; @Value("1") private int one; @Value("true") private boolean maybeTrue; @Value("${hello}"..
Spring boot
2019. 12. 20. 14:59