일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- BRIN
- 서브라임 텍스트
- orioledb
- Spring
- PG-Strom
- springboot
- typeorm
- Maven Project
- maven
- NextJs
- HTML Code
- Next.js
- graph database
- loadcomplete
- exit code = -805306369
- JSP
- tomcat
- Java
- MariaDB
- Can't load AMD 64-bit .dll on a IA 32-bit platform
- STS
- Spring Boot
- tortoise SVN
- Spring Cloud
- NestJS
- PostgreSQL
- Eclipse
- Windows 10
- HTML Special Entity
- OGM
- Today
- Total
목록Spring Boot (2)
Undergoing
1. 의존성 추가 pom.xml org.springframework.boot spring-boot-starter-cache 2.4.3 com.github.ben-manes.caffeine caffeine 3.0.2 gradle implementation group: 'org.springframework.boot', name: 'spring-boot-starter-cache', version: '2.4.3' implementation group: 'com.github.ben-manes.caffeine', name: 'caffeine', version: '3.0.2' 2. Bean 세팅 @Configuration @EnableCaching public class CacheConfig { private sta..
- https://docs.spring.io/spring-boot/docs/current/reference/html/features.html#features.caching.provider 공식 문서 내용을 토대로 사이트 블로그 서핑하면서 정리된 정보들 요약 EhCache 2.X는 고려 안 함 1. Generic - Generic caching is used if the context defines at least one org.springframework.cache.Cache bean. - A CacheManager wrapping all beans of that type is created. 2. JCache - JSR-107을 따르는 자바에서 제공하는 interface - EhCache 3, Haze..