일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- java
- HashMap
- elasticsearch
- awssecretsmanagerpropertysources
- spring
- ResponseBody
- micrometer tracing
- @FunctionalInterface
- kotlin
- map
- jpa
- java.util.list
- Spring Boot
- b3-propagation
- EnableWebMvc
- traceasynccustomautoconfiguration
- java lambda
- spring MVC
- DeferredImportSelector
- list
- CompletableFuture
- Spring JPA
- aws secretmanager
- asynccustomautoconfiguration
- asyncconfigurer
- SpringMVC
- traceId
- Sleuth
- java list
- spring3 spring2 traceid
- Today
- Total
목록kotlin (2)
du.study기록공간
해당 블로그에도 나와있는 이슈 https://newbedev.com/why-does-jackson-2-not-recognize-the-first-capital-letter-if-the-leading-camel-case-word-is-only-a-single-letter-long Programming tutorials | Newbedev Checkout new tutorials and guides for programming languages Javascript, Python, Java, Golang, C++, PHP newbedev.com 최근 개발을 하던 도중 조금 특이한 경우를 만났습니다. 간단한 예제코드 import org.springframework.web.bind.annotation.GetMap..
앞으로 좀 자세하게 작성해 나갈 내용들에 대해서 간략한 요약을 작성하려합니다. 내부적으로 확인해봐야할게 매우 많지만, 우선 코드가 조금 익숙치 않아 기본부터 간략하게 정리하려 합니다. 현재 코틀린을 다루는 기술 이라는 책을 보면서 필요한 부분은 추가로 작성중입니다. 1. 필드 및 변수 - 다음과 같이 val, var 을 통해서 변수를 선언할 수 있다. 차이점이 있다면, val은 java 기준 final처럼 불변을 보장하며, var의 경우 가변필드로 사용할 수 있다. val test = "hello world" var test2 = "hello world2" - 타입을 생략 할 수 있다. 다음과 같이 변수에 대해서 타입을 생략할 수 있다. 단, 추론한 타입과 내가 원한 타입이 다를수 있음에 주의하고 왠만하..