Commit f2805706 by Future

ehcache log

parent 3808e8b9
...@@ -75,6 +75,7 @@ public class EhcacheService { ...@@ -75,6 +75,7 @@ public class EhcacheService {
@Cacheable(value = "business", key = "#key") @Cacheable(value = "business", key = "#key")
public List<ImConversationMembers> getEhCacheMember(String key, Long id) { public List<ImConversationMembers> getEhCacheMember(String key, Long id) {
log.info("本地ehcache不存在 key {}", key);
return imConversationMembersService.list(new QueryWrapper<ImConversationMembers>().lambda() return imConversationMembersService.list(new QueryWrapper<ImConversationMembers>().lambda()
.eq(ImConversationMembers::getFkConversationId, id)); .eq(ImConversationMembers::getFkConversationId, id));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment