在@Cacheable Hit上登录Spring缓存
当前我正在使用一个Spring缓存和@Cacheable
/@CacheEvict
批注。
我希望获得类似"INFO: i got those values from the cache, NOT from the host. awesome"
有没有一种简单明了的方法来做到这一点?我们使用的显然是slf4j
btw,如果您对此感兴趣的话。
Spring
推荐答案本身在trace
级别的org.springframework.cache
记录器下记录它的一些缓存抽象行为。因此,如果您将org.springframework.cache
记录器下的日志附加到适当的附加器,就会有一些关于控制台的有用信息。如果您使用的是Logback,您可以在logback.xml
中使用类似以下内容:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%msg%n</pattern>
</encoder>
</appender>
<logger name="org.springframework.cache" level="trace">
<appender-ref ref="STDOUT" />
</logger>
</configuration>
使用此配置,您应该在控制台上看到如下内容:
关键字‘Page Request[Number:0,Size 20,Sort:空]’的缓存条目 在缓存‘Person’中找到
相关文章