我正在使用来自 karelcemus 版本 2.0.1
https://github.com/KarelCemus/play-redis的 play 版本 2.6.2 和 play-redis 。根据文档,我已禁用 play 的默认 EhCacheModule 并play.api.cache.redis.RedisCacheModule
在 application.conf 中启用并绑定命名缓存是代码示例
play.cache.bindCaches = ["db-cache", "user-cache", "session-cache", "options-cache"]
play {
modules {
enabled += "play.api.cache.redis.RedisCacheModule"
disabled += "play.api.cache.ehcache.EhCacheModule"
}
}
play.cache.redis {
bind-default = true
instances {
play {
host: localhost
port: 6379
prefix: default
}
options-cache{
host: localhost
port: 6379
prefix: options
}
}
}
对于我正在使用的缓存的实现play.cache.SyncCacheApi
import javax.inject.Inject;
import javax.inject.Singleton;
import play.cache.NamedCache;
import play.cache.SyncCacheApi;
@Singleton
public class GeneralOptions extends BaseOptions {
@Inject
public GeneralOptions(@NamedCache("options-cache") SyncCacheApi cache) {
super(cache);
}
}
在编译时,我在运行时没有收到错误,错误即将到来
No implementation for play.cache.SyncCacheApi annotated with @play.cache.NamedCache(value=options-cache) was bound.
while locating play.cache.SyncCacheApi annotated with @play.cache.NamedCache(value=options-cache)
for the 1st parameter of GeneralOptions.<init>(GeneralOptions.java:25)
while locating GeneralOptions
所以每个类都在使用命名缓存时抛出错误。任何线索我缺少什么配置?. 任何建议表示赞赏。