Запитання з тегом «ehcache»


8
Spring Cache @Cacheable - не працює під час виклику з іншого методу того ж боба
Веб-кеш не працює при виклику кешованого методу з іншого методу того ж біна. Ось приклад, щоб пояснити мою проблему чітко. Конфігурація: <cache:annotation-driven cache-manager="myCacheManager" /> <bean id="myCacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager"> <property name="cacheManager" ref="myCache" /> </bean> <!-- Ehcache library setup --> <bean id="myCache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean" p:shared="true"> <property name="configLocation" value="classpath:ehcache.xml"></property> </bean> <cache name="employeeData" maxElementsInMemory="100"/> Кешована послуга: …
107 java  spring  caching  ehcache 



17
У тій самій віртуальній машині вже існує інший неназваний CacheManager (ehCache 2.5)
Це те, що відбувається, коли я запускаю свої тести на джуніт ... Another CacheManager with same name 'cacheManager' already exists in the same VM. Please provide unique names for each CacheManager in the config or do one of following: 1. Use one of the CacheManager.create() static factory methods to reuse …
76 spring  junit  ehcache 
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.