Implementation of Cache using spring and restful service(net.sf.ehcache.Cache using this package)
1)AdminController
- @Component
- @Path("/")
- public class AdminController {
- private static final Logger log = LoggerFactory
- .getLogger(AdminController.class);
- @Path("home.jsp")
- @GET
- @Produces(MediaType.TEXT_HTML)
- public Response home() {
- Map<String, Object> map = new HashMap<String, Object>();
- List<String> cacheObjectList = new ArrayList<String>();
- CacheManager cacheManager = CacheManager.getInstance();
- String[] cacheObject = cacheManager.getCacheNames();
- cacheObjectList = Arrays.asList(cacheObject);
- map.put("cacheList", cacheObjectList);
- return Response.ok(new Viewable("/home", map)).build();
- }
- @Path("cache/clear")
- @POST
- @Consumes(MediaType.APPLICATION_FORM_URLENCODED)
- public Response handleSelectedCacheClear(@FormParam("cacheList") List<String> cacheClerlist) {
- log.debug("Entered into handleSelectedCacheClear");
- CacheManager cacheManager = CacheManager.getInstance();
- for(String cacheObject : cacheClerlist){
- if(cacheManager.cacheExists(cacheObject)){
- cacheManager.clearAllStartingWith(cacheObject);
- log.warn(cacheObject +" cache cleared");
- }
- else{
- log.warn(cacheObject+ " Already cache cleared");
- }
- }
- return Response.status(Response.Status.OK).entity("Successfully cleared "+cacheClerlist+" caches.").build();
- }
- @Path("cache/clear/all")
- @POST
- @Consumes(MediaType.APPLICATION_FORM_URLENCODED)
- public Response handleClearAllCache() {
- log.debug("Entered into handleClearAllCache");
- CacheManager.getInstance().clearAll();
- log.warn(" All caches cleared");
- return Response.status(Response.Status.OK)
- .entity("Successfully cleared all caches.")
- .build();
- }
- @Path("cache")
- @GET
- @Consumes(MediaType.APPLICATION_FORM_URLENCODED)
- public Response fetchCacheData(@QueryParam("name") String name) {
- List<Object> elements = new ArrayList<Object>();
- Cache cache = CacheManager.getInstance().getCache(name);
- for (Object key: cache.getKeys()) {
- Element element = cache.get(key);
- if(element != null)
- elements.add(element);
- }
- Map<String, Object> map = new HashMap<String, Object>();
- map.put("elements", elements);
- return Response.ok(new Viewable("/cacheitems", map)).build();
- }
- }
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" dynamicConfig="true">
- <cache name="businessCache" maxEntriesLocalHeap="200"
- maxEntriesLocalDisk="10000" eternal="false" diskSpoolBufferSizeMB="20"
- timeToIdleSeconds="86400" timeToLiveSeconds="604800"
- memoryStoreEvictionPolicy="LRU">
- </cache>
- <cache name="serviceCache" maxEntriesLocalHeap="200"
- maxEntriesLocalDisk="10000" eternal="false" diskSpoolBufferSizeMB="20"
- timeToIdleSeconds="86400" timeToLiveSeconds="604800"
- memoryStoreEvictionPolicy="LRU">
- </cache>
- <cache name="cardCache" maxEntriesLocalHeap="200"
- maxEntriesLocalDisk="10000" eternal="false" diskSpoolBufferSizeMB="20"
- timeToIdleSeconds="86400" timeToLiveSeconds="604800"
- memoryStoreEvictionPolicy="LRU">
- </cache>
- <cache name="communicationConfigurationCache" maxEntriesLocalHeap="200"
- maxEntriesLocalDisk="10000" eternal="false" diskSpoolBufferSizeMB="20"
- timeToIdleSeconds="86400" timeToLiveSeconds="604800"
- memoryStoreEvictionPolicy="LRU">
- </cache>
- <cache name="communicationFormatCache" maxEntriesLocalHeap="200"
- maxEntriesLocalDisk="10000" eternal="false" diskSpoolBufferSizeMB="20"
- timeToIdleSeconds="86400" timeToLiveSeconds="604800"
- memoryStoreEvictionPolicy="LRU">
- </cache>
- </ehcache>
rest-servlet.xml
- <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:cache="http://www.springframework.org/schema/cache"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-3.0.xsd
- http://www.springframework.org/schema/cache
- http://www.springframework.org/schema/cache/spring-cache.xsd">
- <cache:annotation-driven cache-manager="cacheManager" />
- <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager">
- <property name="cacheManager" ref="ehcache" />
- </bean>
- <bean id="ehcache"
- class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
- <property name="configLocation" value="classpath:ehcache.xml" />
- <property name="shared" value="true" />
- </bean>
- </beans>
home.jsp
- <%@page import="java.util.Arrays"%>
- <%@page import="java.util.List"%>
- <%@page import="java.util.ArrayList"%>
- <%@page contentType="text/html"%>
- <%@page pageEncoding="UTF-8"%>
- <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
- <!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=ISO-8859-1">
- <style type="text/css">
- .submitBtnStyle {
- margin-right: -6%;
- margin-left: 272%;
- position: relative;
- }
- .clearBtnStyle {
- position: relative;
- left:1%;
- }
- h2 {
- text-decoration: underline;
- }
- </style>
- <script type="text/javascript">
- function checkBoxValidation() {
- for (var i = 0; i < document.cacheForm.cacheList.length; i++) {
- if (!document.cacheForm.cacheList[i].checked) {
- alert("Please select at least one cache");
- return false;
- } else {
- return true;
- }
- }
- }
- </script>
- <title>Clear Cache Checkbox</title>
- </head>
- <body>
- <h2>HPS Cache Services</h2>
- <table border="3" >
- <form id="clearAll" action="cache/clear/all" method="post">
- </form>
- <form name="cacheForm" onsubmit="checkBoxValidation()"
- action="cache/clear" method="post">
- <!-- here should go some titles... -->
- <tr>
- <th>Select</th>
- <th>Name of the Cache</th>
- </tr>
- <c:forEach var="cache" items="${it.cacheList}">
- <tr>
- <td><input type="checkbox" id="cacheList" name="cacheList"
- value="${cache}"></td>
- <td><a href="cache?name=${cache}">${cache}</a></td>
- </tr>
- </c:forEach>
- <td>
- <input type="submit" value="Submit" class="submitBtnStyle" />
- </td>
- <td>
- <input type="submit" value="Clear All" class="clearBtnStyle" form="clearAll" />
- </td>
- <br>
- </form>
- </table>
- </body>
- </html>
- index.jsp
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
- <!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>
- <c:redirect url="/admin/home.jsp"/>
- </body>
- </html>
cacheitems.jsp
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
- <!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>
- <table border="3">
- <tr>
- <th>Key</th>
- <th>Value</th>
- </tr>
- <c:forEach var="element" items="${it.elements}">
- <tr>
- <td><c:out value="${element.getObjectKey()}" /></td>
- <td><c:out value="${element.getObjectValue()}" /></td>
- </tr>
- </c:forEach>
- </table>
- </body>
- </html>
No comments:
Post a Comment