缓存初解(五)---SpringMVC基于注解的缓存配置--web应用实例

之前为大家介绍了如何使用spring注解来进行缓存配置 (EHCache 和 OSCache)的简单的例子,详见

Spring基于注解的缓存配置--EHCache AND OSCache

现在介绍一下如何在基于注解springMVC的web应用中使用注解缓存,其实很简单,就是将springMVC配置文件与缓存注解文件一起声明到context中就OK了。

下面我就来构建一个基于spring注解小型的web应用,这里我使用EHCache来作为缓存方案

jar依赖:

ehcache-core-1.7.2.jar
jakarta-oro-2.0.8.jar
slf4j-api-1.5.8.jar
slf4j-jdk14-1.5.8.jar 
cglib-nodep-2.1_3.jar
commons-logging.jar
log4j-1.2.15.jar
spring-modules-cache.jar
spring.jar 
jstl.jar

standard.jar

接着我们来编写web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"id="WebApp_ID" version="2.4"xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"><display-name>SpringCacheWeb</display-name><!-- 由spring加载log4j --><context-param><param-name>log4jConfigLocation</param-name><param-value>classpath:log4j.properties</param-value></context-param><!-- 声明spring配置文件 --><context-param><param-name>contextConfigLocation</param-name><param-value>/WEB-INF/spring-servlet.xml</param-value></context-param><!-- 使用UTF-8编码 --><filter><filter-name>Set Character Encoding</filter-name><filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class><init-param><param-name>encoding</param-name><param-value>UTF-8</param-value></init-param></filter><filter-mapping><filter-name>Set Character Encoding</filter-name><url-pattern>*.do</url-pattern></filter-mapping><!-- 负责初始化log4j--><listener><listener-class>org.springframework.web.util.Log4jConfigListener</listener-class></listener><!-- 负责初始化spring上下文--><listener><listener-class>org.springframework.web.context.ContextLoaderListener</listener-class></listener><!-- springMVC控制器--><servlet><servlet-name>spring</servlet-name><servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class><load-on-startup>1</load-on-startup></servlet><servlet-mapping><servlet-name>spring</servlet-name><url-pattern>*.do</url-pattern></servlet-mapping><session-config><session-timeout>10</session-timeout></session-config><welcome-file-list><welcome-file>index.jsp</welcome-file><welcome-file>index.html</welcome-file><welcome-file>index.htm</welcome-file></welcome-file-list>
</web-app>

 接着我们来编写spring-servlet.xml

 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xmlns:context="http://www.springframework.org/schema/context"xmlns:ehcache="http://www.springmodules.org/schema/ehcache"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsdhttp://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsdhttp://www.springmodules.org/schema/ehcache http://www.springmodules.org/schema/cache/springmodules-ehcache.xsd"default-lazy-init="true"><!--启用注解   定义组件查找规则 --><context:component-scan base-package="com.netqin"><context:include-filter type="annotation"expression="org.springframework.stereotype.Controller" /><context:include-filter type="annotation"expression="org.springframework.stereotype.Service" /><context:include-filter type="annotation"expression="org.springframework.stereotype.Repository" /></context:component-scan><!-- 视图查找器 --><bean id="viewResolver"class="org.springframework.web.servlet.view.InternalResourceViewResolver"><property name="viewClass"value="org.springframework.web.servlet.view.JstlView"></property><property name="prefix" value="/WEB-INF/jsp/"></property><property name="suffix" value=".jsp"></property></bean><!-- 加载ehcache缓存配置文件 说明:在这里我遇到了这样一个问题,当使用@Service等注解的方式将类声明到配置文件中时,就需要将缓存配置import到主配置文件中,否则缓存会不起作用如果是通过<bean>声明到配置文件中时,则只需要在web.xml的contextConfigLocation中加入applicationContext-ehcache.xml即可,不过还是推荐使用如下方式吧,因为这样不会有任何问题--><import resource="classpath:applicationContext-ehcache.xml"/>
</beans>

 

ok,我们接着编写applicationContext-ehcache.xml,还记得之前介绍的基于命名空间的配置吗,如下:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ehcache="http://www.springmodules.org/schema/ehcache"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsdhttp://www.springmodules.org/schema/ehcache http://www.springmodules.org/schema/cache/springmodules-ehcache.xsd"><ehcache:config configLocation="classpath:ehcache.xml"id="cacheProvider" /><ehcache:annotations providerId="cacheProvider"><ehcache:caching cacheName="testCache" id="testCaching" /><ehcache:flushing cacheNames="testCache" id="testFlushing" /></ehcache:annotations></beans>

 ehcache.xml如下

<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:noNamespaceSchemaLocation="ehcache.xsd" updateCheck="true"monitoring="autodetect"><diskStore path="java.io.tmpdir"/><defaultCachemaxElementsInMemory="10000"eternal="false"timeToIdleSeconds="120"timeToLiveSeconds="120"overflowToDisk="true"maxElementsOnDisk="10000000"diskPersistent="false"diskExpiryThreadIntervalSeconds="120"memoryStoreEvictionPolicy="LRU"/><cache name="testCache"maxElementsInMemory="10000"maxElementsOnDisk="1000"eternal="false"overflowToDisk="true"diskSpoolBufferSizeMB="20"timeToIdleSeconds="300"timeToLiveSeconds="600"memoryStoreEvictionPolicy="LFU"/>
</ehcache>

 

ok,配置文件都完成了,接着我们来编写controller、service和dao

1.CacheDemoController:

package com.netqin.function.cacheDemo;import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;@Controller
public class CacheDemoController {@Autowiredprivate CacheDemoService service;@RequestMapping("/demo.do")public String handleIndex(Model model) {System.out.println(service.getName(0));model.addAttribute("name", service.getName(0));return "cacheDemo";}@RequestMapping("/demoFulsh.do")public String handleFulsh(Model model) {service.flush();return "cacheDemo";}
}

 2.CacheDemoService :

package com.netqin.function.cacheDemo;import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springmodules.cache.annotations.CacheFlush;
import org.springmodules.cache.annotations.Cacheable;@Service
public class CacheDemoService {@Autowiredprivate CacheDemoDao dao;@Cacheable(modelId = "testCaching")public String getName(int id){System.out.println("Processing testCaching");return dao.getName(id);}@CacheFlush(modelId = "testFlushing")public void flush(){System.out.println("Processing testFlushing");}}

 

我们只对service层加入了注解缓存配置。

 

接着我们来写一个简单的页面,cacheDemo.jsp:

<%@ page language="java" contentType="text/html; charset=UTF-8"pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
CacheDemo:${name}
</body>
</html>

 

ok,一切就绪,我们启动服务器,并访问http://localhost:8080/cache/demo.do

 

多请求几次,请求两次的输出结果:

Processing testCaching
NameId:0
NameId:0

 

说明缓存起作用了,ok!

 

接着我们刷新该缓存,访问http://localhost:8080/cache/demoFulsh.do

再请求http://localhost:8080/cache/demo.do

输出结果:

Processing testCaching
NameId:0
NameId:0
Processing testFlushing
Processing testCaching
NameId:0

 

缓存刷新成功。

转载于:https://www.cnblogs.com/wcyBlog/p/3949709.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/273604.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Redis String 类型操作及常用命令

七个原则 Redis 是一个操作数据结构的语言工具&#xff0c;它提供基于 TCP 的协议以操作丰富的数据结构。在 Redis 中&#xff0c;数据结构这个词的意义不仅表示在某种数据结构上的操作&#xff0c;更包括了结构本身及这些操作的时间空间复杂度。Redis 定位于一个内存数据库&am…

于我,过去,现在和未来 —— 西格里夫·萨松

In me, past, present, future meet            于我&#xff0c;过去、现在和未来To hold long chiding conference              商讨聚会 各执一词 纷扰不息My lusts usurp the present tense             林林总总的 欲望&#xff0c;…

Java assert关键字

Java assert关键字 Assert 简介 Java2在1.4中新增了一个关键字&#xff1a;assert。在程序开发过程中使用它创建一个断言(assertion)。语法格式有两种&#xff1a; assert condition; 这里condition是一个必须为真(true)的表达式。如果表达式的结果为true&#xff0c;那么断言为…

linux 二级域名设置

首先&#xff0c;你的拥有一个有泛域名解析的顶级域名&#xff0c;例如&#xff1a; domain.com  其次&#xff0c;在 httpd.conf 中打开 mod_rewrite  之后&#xff0c;在 httpd.conf 的最后&#xff0c;添加以下内容&#xff1a;  RewriteEngine on  RewriteMap lowe…

Spring Boot @Conditional 注解

Spring Boot Conditional注解 Conditional是Spring4新提供的注解&#xff0c;它的作用是按照一定的条件进行判断&#xff0c;满足条件的才给容器注册Bean。 Conditional注解定义 Target({ElementType.TYPE, ElementType.METHOD}) Retention(RetentionPolicy.RUNTIME) Documente…

计算几何 半平面交

LA 4992 && hdu 3761 Jungle Outpost 杭电的有点坑啊。。一直爆内存&#xff0c;后来发现大白的半平面交模板那里 point *p new point[n]; line *q new line[n]这里出了问题&#xff0c;应该是在函数里面申请不了比较大的数组&#xff0c;所以爆内存。。我在全局定义…

Maven 强制导入jar包

场景 有时候因为各种原因(依赖有了&#xff0c;jar包有了)&#xff0c;项目中就是没有这个jar包。 在需要强导的项目中创建lib文件夹&#xff0c;将需要强导的jar包访问lib中。添加依赖$&#xff5b;pom.basedir&#xff5d;:获取当前所在的项目目录 $&#xff5b;pom.basedir&…

0910

我累得时候希望你能在我身边&#xff0c;在你的怀里好好的睡一觉。转载于:https://www.cnblogs.com/zhanzhao/p/3964175.html

《Java 高并发》03 线程的生命周期

相关概念 进程是指一个内存中运行的应用程序&#xff0c;每个进程都有自己独立的一块内存空间&#xff0c;一个进程中可以启动多个线程。 一个进程是一个独立的运行环境&#xff0c;它可以被看作一个程序或者一个应用。而线程是在进程中执行的一个任务。Java运行环境是一个包含…

OpenLayers3 online build

openlayers3使用了一个比较复杂的build工具&#xff0c;从github上下载下来的代码中并没有build之后的版本&#xff0c;要配置build环境又比较繁琐&#xff0c;好在官方的example中提供了在线的版本&#xff0c;下面就是link&#xff1a; http://openlayers.org/en/v3.0.0/buil…

Mysql 必知必会(一)

文章案例所需的SQL文件&#xff0c;点击下载 使用MySQL 进入mysql安装目录下的bin目录&#xff1a; 连接Mysql&#xff1a;mysql -uroot -p123456;显示Mysql下的所有数据库&#xff1a;show databases;切换数据库&#xff1a;use local;显示数据库下所有表名&#xff1a;show t…

design.js

//模块式开发 var myNamespace (function () { var myPrivateVar 0;var myPrivateMethod function (foo) {console.log(foo); };return {myPublicVar : "foo",myPublicFunction : function (bar) {myPrivateVar;myPrivateMethod(bar);} }; })(); //原型模式 var…

Spring boot 整合dynamic实现多数据源

项目git地址&#xff1a;Jacob-dynamic 准备工作 # 创建数据库db1 CREATE DATABASE db1CHARACTER SET utf8 COLLATE utf8_bin # 创建user表 CREATE TABLE user (id int(11) DEFAULT NULL,name varchar(255) DEFAULT NULL ) ENGINEInnoDB DEFAULT CHARSETutf8 # 添加数据 INSERT…

LInux 命令大全

开关机 reboot&#xff1a;重启shutdown -h 0 或者init 0 &#xff1a;关机halt&#xff1a;关机poweroff:关机 文件的操作 ll&#xff1a;显示文件夹详细信息ls&#xff1a;显示文件目录mkdir fileName&#xff1a;创建目录mkdir -p fileName/fileName&#xff1a;目录cd file…

企业级业务系统开发实战-序言

前些年一直在做微软的解决方案实施与软件开发的工作。在学习、项目实施、开发与管理的过程中学到了别人不少好的东西&#xff0c;也自身总结了大量的经验&#xff0c;希望能够通过一个系列来跟大家分享关于软件开发方面的内容。 这个开发系列的由来是这样的&#xff0c;两年前作…

Could not autowire. No beans of 'JavaMailSender' type found..md

Could not autowire. No beans of JavaMailSender type found. 导入依赖 <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-mail</artifactId><version>2.1.5.RELEASE</version> </depe…

极客Web前端开发资源集锦

本周我们带来的前端推荐包含当前热门的bootstrap&#xff0c;html5&#xff0c;css3等技术内容和新闻话题&#xff0c;如果你还想近一步学习如何开发&#xff0c;还可以关注我们的极客课程库&#xff0c;里面涵盖了现代开发技术的‘学’与‘习’的全新功能。希望对大家有所帮助…

mahout学习笔记4

分析数据 有哪些数据 选用什么样的推荐算法 Finding an effective recommender 各种算法组合测试 Tanimoto算法在与thresholdneighborhoold结合时值应该设置比较底&#xff0c;0.5已经是很高的相似度 可以重写ItemSimilarity &#xff0c;把自己的功能放到里面 IDRescorer 可以…

使用 Spring Cloud 实现微服务系统

使用 Spring Cloud 实现微服务系统 准备工作&#xff1a;为了方便创建项目&#xff0c;以及各版本以来关系&#xff0c;此次创建项目使用 Spring Assistant插件。 创建单体服务中心项目 启用服务端的服务注册&#xff0c;发现功能 EnableEurekaServer SpringBootApplication pu…

HTML+CSS公司培训(一)高手请飘过

随着公司的转向&#xff0c;从.net到webapp很多人无从适应。因此在公司进行一些简单的培训。同时把我微薄的经验分享给大家&#xff0c;并且和大家一起学习进步。 对于HTML在正常的开发中我们其实用的标签就是那么简单的几个&#xff08;是小编在项目开发中常用的一些&#xff…