-
Notifications
You must be signed in to change notification settings - Fork 38.9k
Closed
Labels
in: coreIssues in core modules (aop, beans, core, context, expression)Issues in core modules (aop, beans, core, context, expression)status: backportedAn issue that has been backported to maintenance branchesAn issue that has been backported to maintenance branchestype: bugA general bugA general bug
Milestone
Description
- spring-context-support 5.3.18
- jdk version:17.0.4
here is my thread stack, block 193 threads
CaffeineCacheManager.java
public Cache getCache(String name) {
return this.cacheMap.computeIfAbsent(name, cacheName ->
this.dynamic ? createCaffeineCache(cacheName) : null);
}here is my code:
@CacheConfig(cacheNames = "branch")
public class BranchServiceImpl {
@Cacheable(key = "#exp.id")
public List<Branch> findById(Experiment exp) {
// ……
}
@CachePut(key = "#exp.id")
public List<Branch> updateCacheByExpId(Experiment exp, List<Branch> branches) {
// ……
}
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
in: coreIssues in core modules (aop, beans, core, context, expression)Issues in core modules (aop, beans, core, context, expression)status: backportedAn issue that has been backported to maintenance branchesAn issue that has been backported to maintenance branchestype: bugA general bugA general bug
