일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Gradle
- redis
- db
- jenkins
- 요리
- linux
- AWS
- MySQL
- javascript
- ubuntu
- Oracle
- IntelliJ
- laravel
- Web Server
- tool
- Git
- devops
- it
- Spring Boot
- jsp
- springboot
- elasticsearch
- 맛집
- php
- java
- Spring
- Spring Batch
- ReactJS
- Design Patterns
- JVM
- Today
- Total
목록2024/05/30 (2)
아무거나
DynamoDB 적용의존성 추가(build.gradle.kts)...dependencies { ... // AWS SDK implementation("software.amazon.awssdk:dynamodb-enhanced") implementation(platform("software.amazon.awssdk:bom:2.20.56"))...Entity Class 생성[SampleTable.kt]import com.bkjeon.base.feature.constants.DdbIndexConstimport org.springframework.format.annotation.DateTimeFormatimport software.amazon.awssdk.enhanced.dynamodb.mapper.annota..
EhCache 적용의존성 추가(build.gradle.kts)...dependencies { ... // Cache implementation("org.springframework.boot:spring-boot-starter-cache") implementation("org.ehcache:ehcache:3.9.5") ...Application 구동 클래스에 @EnableCaching 추가@EnableCaching // 추가@SpringBootApplicationclass KotlinJpaCodebaseApplicationfun main(args: Array) { runApplication(*args)}Config 관련 클래스 추가[EhCacheConfig.kt]@Configurationclass E..