`
入云涛
  • 浏览: 155796 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

配置Spring EhCacheManagerFactoryBean关于ehcache.xml的问题

    博客分类:
  • j2ee
阅读更多
今天忽然遇到了一个问题,在junit测试的时候,我的ehcache.xml配置是没有问题的,当我在web中使用的时候就出现找不到的原因,查询了些资料,比较少,都没有知道找到合适的,看到一则关于配置spring页面映射的时候才看到下列代码
public void init(ServletConfig servletConfig) throws ServletException {
		ApplicationContext ctx = WebApplicationContextUtils.getRequiredWebApplicationContext(servletConfig.getServletContext());
		AllContext.init(ctx);
	}
这样就把上面的配置到web.xml中,就可以了,也恍然大悟,那怪我的defaultCacheManager找不到chcache.xml了,原来于此有关,特此记下,以免下次遇到相关的问题可以得到解决。
分享到:
评论

相关推荐

    Spring 使用注解配置使用ehcache

    在Spring框架中,注解配置已经成为了一种主流的配置方式,极大地简化了XML配置的繁琐。Ehcache作为一款流行的Java缓存系统,被广泛应用于提高应用性能,尤其是在数据访问层。本文将深入探讨如何在Spring中使用注解来...

    Spring4 整合EhCache实现 页面缓存 零配置

    在这个配置类中,我们创建了两个bean:`ehCacheManagerFactoryBean`用于加载EhCache的配置文件(默认为`ehcache.xml`),`cacheManager`则用于将EhCache实例注入到Spring容器中。 现在,我们需要创建`ehcache.xml`...

    Spring+Ehcache集成

    然后,在Spring的主配置文件中,如`applicationContext.xml`,我们需要导入Ehcache的配置,并声明一个EhcacheManager: ```xml <bean id="cacheManager" class="org.springframework.cache.ehcache....

    37. Spring Boot集成EHCache实现缓存机制【从零开始学Spring Boot】

    Spring Boot简化了配置过程,使得我们可以快速地将EHCache引入到我们的应用中,从而提高应用程序的性能,减少对数据库或其他资源的重复访问。下面,我们将会详细讲解相关知识点。 首先,了解**Spring Boot**。...

    spring+ehcache完整示例demo

    3. **Spring配置**:在Spring的配置文件(如applicationContext.xml)中启用Ehcache支持,并加载上面的ehcache.xml配置。例如: ```xml <bean id="cacheManager" class="org.springframework.cache.ehcache....

    Spring+EhCache缓存实例

    **Spring+EhCache缓存实例...接着,在Spring的配置文件(如`applicationContext.xml`)中声明EhCache的配置: ```xml <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager"> ...

    Ehcache集成Spring的使用(转载)

    3. **配置 Spring**: 在 Spring 的配置文件中,如 `applicationContext.xml`,添加 Ehcache 的配置: ```xml <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"> ...

    在Spring+Hibernate集成环境中使用EhCache缓存

    <bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"> <property name="configLocation" value="classpath:ehcache.xml"/> ``` 这里,我们还引用了一个名为`ehcache.xml`...

    spring2.5整合ehcache2.0使用

    然后,在Spring的主配置文件(如`applicationContext.xml`)中,我们需要配置一个`CacheManager`,并指定Ehcache的配置文件位置: ```xml <bean id="cacheManager" class="org.springframework.cache.ehcache....

    spring整合ehCache

    Spring整合EhCache是将...在Spring中,我们还需要创建一个Spring配置文件(如`applicationContext.xml`),并配置EhCache的Bean。这包括定义`CacheManager`,加载`ehcache.xml`配置,并声明要使用的缓存: ```xml ...

    spring整合EhCache 的简单例子

    - 首先,我们需要在Spring配置文件中声明EhCache的bean,包括`CacheManager`、`Cache`以及`EhCacheManagerFactoryBean`。 3. **配置EhCache** - 创建`ehcache.xml`配置文件,定义缓存的大小、过期策略等属性。...

    Spring与ehcache结合使用

    <bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"> <property name="configLocation" value="classpath:properties/ehcache.xml"/> ``` 上述代码通过`...

    spring3.2+ehcache 注解使用

    在Spring的配置文件(如`applicationContext.xml`)中添加以下内容来创建一个Ehcache管理器: ```xml <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"> ...

    Ehcache(一): Spring + Ehcache开场白

    <bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"> <property name="configLocation" value="classpath:ehcache.xml"/> ``` 接下来,我们可以在Spring的bean中使用`@...

    SpringAOP结合ehCache实现简单缓存实例

    <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"> <property name="configLocation" value="classpath:ehcache.xml"/> ``` 在ehcache.xml中,你可以定义具体的...

    spring整合ehcache的完整用例

    在Spring的配置文件(如`applicationContext.xml`)中启用缓存注解,并指定Ehcache配置文件的位置。 ```xml <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi=...

    EHCache 实例

    这段配置告诉Spring使用`ehcache.xml`文件来创建和管理EhCache实例。 然后,我们可以创建一个`EhCacheFactoryBean`来获取特定的缓存区域: ```xml <bean id="methodCache" class="org.springframework.cache....

    Spring+ehcache整合

    3. **配置Spring**:在Spring的配置文件(如`applicationContext.xml`)中,添加Ehcache的bean配置,以使Spring能够管理Ehcache: ```xml <bean id="cacheManager" class="org.springframework.cache.ehcache....

    Ehcache_spring的demo

    接下来,在Spring的主配置文件(如`applicationContext.xml`)中,我们需要声明Ehcache的bean并引用上面的配置文件: ```xml <bean id="cacheManager" class="org.springframework.cache.ehcache....

Global site tag (gtag.js) - Google Analytics