일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- HTML Code
- 서브라임 텍스트
- OGM
- Eclipse
- NextJs
- tortoise SVN
- MariaDB
- Next.js
- JSP
- Spring Cloud
- maven
- Spring Boot
- PG-Strom
- typeorm
- loadcomplete
- BRIN
- orioledb
- PostgreSQL
- graph database
- Windows 10
- Spring
- tomcat
- HTML Special Entity
- Maven Project
- Can't load AMD 64-bit .dll on a IA 32-bit platform
- exit code = -805306369
- NestJS
- Java
- springboot
- STS
- Today
- Total
목록개발/Spring Boot (3)
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..
DB connection이 유기적이라 application.properties에 DB 정보를 저장하지 않고 별도의 Class File에서 관리하려 한다. @Configuration@MapperScan("package")public class DBConfig { //@Primary@Profile({"LOCAL"})@Bean(name="dataSource")public DataSource dataSourceLocal() {BasicDataSource dataSource = new BasicDataSource();dataSource.setDriverClassName("net.sf.log4jdbc.sql.jdbcapi.DriverSpy");dataSource.setUrl("jdbc:log4jdbc:mariadb..