mirror of
https://github.moeyy.xyz/https://github.com/GeWuYou/forgeboot
synced 2025-10-28 00:11:10 +08:00
- 添加 CacheableEx、CacheEvictEx、CachePutEx 注解用于缓存操作 - 实现 Cache 接口定义缓存基本操作 - 添加 CacheProperties 配置类- 实现 CacheLayer、CacheException 等辅助类 - 添加缓存策略、序列化、管理器等配置类
12 lines
400 B
Plaintext
12 lines
400 B
Plaintext
plugins {
|
|
alias { libs.plugins.kotlin.plugin.spring }
|
|
}
|
|
dependencies {
|
|
compileOnly(project(Modules.Cache.API))
|
|
compileOnly(project(Modules.Cache.IMPL))
|
|
compileOnly(libs.springBoot.autoconfigure)
|
|
implementation(libs.springBootStarter.redis)
|
|
implementation(libs.jackson.databind)
|
|
implementation(libs.redisson.springBootStarter)
|
|
api(project(Modules.Core.SERIALIZATION))
|
|
} |