- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Spring 中有一个拦截器,它 Autowiring 两个不同的服务。这两种服务都有来自 ehcache-spring-annotations 项目的带有 @Cacheable
标记的方法,但具有不同的 cacheNames
。
public class MenuInterceptor extends HandlerInterceptorAdapter {
@Autowired
private EventService eventService;
@Autowired
private OrganisationInfoService orgService;
@Override
public final void postHandle(HttpServletRequest request,
HttpServletResponse response,
Object handler,
ModelAndView modelAndView) throws SystemException {
eventService.getFolderEventsForUser(123);
orgService.getOrgCustomProfile("abc");
}
@Service
public class EventServiceImpl implements EventService {
@Override
@Cacheable(cacheName = "ecomOrders")
public Collection<FolderEventBean> getFolderEventsForUser(long loginId) throws SystemException {
@Service("organisationInfoService")
public class OrganisationInfoServiceImpl implements OrganisationInfoService {
@Override
@Cacheable(cacheName="orgProfile")
public OrgCustomProfileBean getOrgCustomProfile(String orgHierarchyString) throws ServiceException {
当我运行我的应用程序时,一种方法成功使用 EHCache 作为结果,而另一种方法则没有。 OrganisationInfoSericeImpl.getOrgCustomProfile()
会正确缓存,而 EventServiceImpl.getFolderEvnetsForUser
不会。谁能告诉我为什么?
我已尝试对两种服务使用相同的缓存,但仍然只有其中一种有效。我为 ehcache-spring-annotations 打开了 DEBUG,它在启动期间注册了这两种方法:
[DEBUG] 08:09:01 () Adding CACHE advised method 'getFolderEventsForUser' with attribute: CacheableAttributeImpl [cache=[ name = ecomOrders status = STATUS_ALIVE eternal = false overflowToDisk = false maxElementsInMemory = 100 maxElementsOnDisk = 0 memoryStoreEvictionPolicy = LRU timeToLiveSeconds = 300 timeToIdleSeconds = 0 diskPersistent = false diskExpiryThreadIntervalSeconds = 120 cacheEventListeners: net.sf.ehcache.statistics.LiveCacheStatisticsWrapper hitCount = 0 memoryStoreHitCount = 0 diskStoreHitCount = 0 missCountNotFound = 0 missCountExpired = 0 ], cacheKeyGenerator=HashCodeCacheKeyGenerator [includeMethod=true, includeParameterTypes=true, useReflection=false, checkforCycles=false], entryFactory=null, exceptionCache=null, parameterMask=ParameterMask [mask=[]]] [] at com.googlecode.ehcache.annotations.impl.CacheAttributeSourceImpl.getMethodAttribute(CacheAttributeSourceImpl.java:174)
[DEBUG] 08:09:01 () Adding CACHE advised method 'getOrgCustomProfile' with attribute: CacheableAttributeImpl [cache=[ name = orgProfile status = STATUS_ALIVE eternal = false overflowToDisk = false maxElementsInMemory = 200 maxElementsOnDisk = 0 memoryStoreEvictionPolicy = LRU timeToLiveSeconds = 86400 timeToIdleSeconds = 0 diskPersistent = false diskExpiryThreadIntervalSeconds = 120 cacheEventListeners: net.sf.ehcache.statistics.LiveCacheStatisticsWrapper hitCount = 0 memoryStoreHitCount = 0 diskStoreHitCount = 0 missCountNotFound = 0 missCountExpired = 0 ], cacheKeyGenerator=HashCodeCacheKeyGenerator [includeMethod=true, includeParameterTypes=true, useReflection=false, checkforCycles=false], entryFactory=null, exceptionCache=null, parameterMask=ParameterMask [mask=[]]] [] at com.googlecode.ehcache.annotations.impl.CacheAttributeSourceImpl.getMethodAttribute(CacheAttributeSourceImpl.java:174)
当拦截器调用 Autowiring 服务时,只有其中一个缓存:
[DEBUG] 08:09:19 (UNIQUE_ID) Generated key '-1668638847278617' for invocation: ReflectiveMethodInvocation: public abstract no.finntech.base.modules.organisation.support.OrgCustomProfileBean no.finntech.service.organisation.OrganisationInfoService.getOrgCustomProfile(java.lang.String) throws no.finntech.service.ServiceException; target is of class [no.finntech.service.organisation.impl.OrganisationInfoServiceImpl] [URI: /finn/minfinn/myitems/list, Remote IP: 127.0.0.1, Referer: , User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:6.0.2) Gecko/20100101 Firefox/6.0.2] at com.googlecode.ehcache.annotations.interceptor.EhCacheInterceptor.generateCacheKey(EhCacheInterceptor.java:272)
编辑:我应该提一下,这两个服务是在不同的 Maven 模块中定义的。
最佳答案
原来是和context:component-scan有关的原因。未能缓存的服务包含在两个不同的组件扫描中。一旦我确定缓存按预期工作。
关于java - 为什么我的 @Cachable 注释方法不使用 EHCache 缓存结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7412049/
我的一个要求是查看我缓存了多少数据 我想看看Spring缓存了哪些数据。 有什么方法可以查看 Spring 缓存的内容吗?键和值 最佳答案 好吧,如果你有 CacheManager 的句柄 http:
我试图了解 Java 中的并发编程究竟是如何工作的。很多时候我阅读了不同的并发性等内容。但我不确定什么是可缓存范围。对于cachable,我的意思是线程可以缓存变量。 例如,如果我有自定义线程: pu
我在使用 @org.springframework.cache.annotation.Cachable 注释时遇到问题: @Bean public ConcurrentMapCache cache()
我们在项目中使用 ehcache 进行缓存。 import com.googlecode.ehcache.annotations.Cacheable; // Other imports @Compon
示例来自:SpringSource @Cacheable(value = "vets") public Collection findVets() throws DataAccessException
我通过添加 @Cachable 注释来启用公共(public)方法的缓存,如下所示: @Cacheable(cacheNames = "saas_setting", // key =
我的应用程序有 3-4 个使用 Redis 实现的 @Cachable 方法。所有方法都使用一个包含 2-3 个字段的键,但它们都有一个共同字段:submFileId。例如: @Cachable pu
我在 Spring 中有一个拦截器,它 Autowiring 两个不同的服务。这两种服务都有来自 ehcache-spring-annotations 项目的带有 @Cacheable 标记的方法,但
假设我的 Controller 中有两种方法来支持 json 和 xml。 @RequestMapping(value = "/get/response.json", method = Request
我想尝试 Spring 3.1 缓存抽象,用 @Cachable 注释一些方法。这在没有参数的方法上工作得很好。对于带有参数的方法则不然。在文档中找不到任何内容(http://static.sprin
我正在使用 spring 和 @Cacheable 注释来缓存一些数据库条目。我想定期使完整缓存失效。 因此:将这些注解放在接口(interface)方法上是否有效?或者这些注释是否必须放在类方法上(
我们面临一个奇怪的问题,我一直不明白发生了什么,希望其他人已经遇到同样的问题并且知道发生了什么。 我们使用@Cachable 编写了一个简单的 REST 服务: @GetMapping(value =
我有一个自定义 Icon,它使用 TexturePaint 作为绘画并在 Graphics2D 对象上调用 fillPolygon。 此代码在 JDK6 和 JDK7 上运行良好,但在 JDK8 和
这是我的代码: @Cacheable(value = "configurationCache", key = "#myFile.lastModified()") private Object foo(
我有一个缓存的重页。这对匿名用户来说是可以的。他们都看到相同的页面。 问题出在登录用户身上。他们应该在每次请求时重新呈现页面的小部分(例如页面内容的个人注释等) 但是仍然应该缓存页面的所有其余部分(渲
我正在努力在两种方法上使用 spring boot @Cacheable 和 ehcache 来正确使用缓存处理: 使用网络客户端调用另一个服务: suspend fun getDeviceOwner
我正在尝试调用显示函数,这里是我的 controller.php 代码 Controller.php 我应该做哪些更改才能使此代码正常工作?请帮我解决错误。 最佳答案 您需要如下声明显示函数 publ
我是一名优秀的程序员,十分优秀!