使用+ Spring + Struts应用程序

时间:2016-08-29 23:27:28

标签: spring caching ehcache spring-4

在我的应用程序中,ehcache配置如下。

AppDataRegion.java

//import statements.

public class AppDataRegion{

//Variable for region identifier.
private String appRegionId;

// constructor sets the appRegionId;
//obtained from the system current time.
public AppDataRegion(){
appRegionId = String.valueOf(System.currentTimeMillis());
}

//Variable for cachemanager
// injected by spring DI from context xml
Private CacheManager appCacheMngr;

//necessary getter / setter methods for variable cachemanager
//necessary getter / setter methods for variable appRegionId

//method to create a region in cache using the appRegionId value
private createRegion(){
  if (!appCacheMngr.cacheExists(appRegionId)){
    try {
        appCacheMngr.addCache(appRegionId);
    catch (exc){
    //exception handled
    }
   }
}

public Cache getRegion(){
if(appCacheMngr == null || !appCacheMngr.cacheExists(appRegionId)){
createRegion();
}
return appCacheMangr.getCache(appRegionId);
}
private createCustRegion(){
    try{
    Cache custCache = appCacheMngr.getCache(“custdiskCache”);
    If(null == custCache.addCache(custCache);
    }catch (exp){
    //handled the exceptions
}
retrun appCacheMngr.getCache(“custdiskCache”);
}
}

Spring配置

<bean id="appDataStoreService" class="com.app.cache.AppDataStoreService" >      
        <property name="appDataStoreRegion" ref="appDataStoreRegion"/>
     </bean>

     <bean id="appDataStoreRegion" class="com.app.cache.AppDataStoreRegion">        
        <property name="appcacheManager" ref="cacheManager"/>
     </bean>

<bean id="cacheManager" class="net.sf.ehcache.CacheManager" factory-method="create">       
        <constructor-arg index="0" type="java.net.URL" value="classpath:ehcache-app.xml" />
    </bean>

//应用程序数据存储区域有一个服务层。

public class AppDataStoreService{

//datastoreregion variable declaration
private AppDataStoreRegion appDataStoreRegion;


public void storeCustObjInCache(String id, Object obj){
    Cache region = appDataStoreRegion.getCustRegion();
    If(region != null && id !=null && region.isElementInMemory(id)){
    region.remove(id);
}
Element ele = new Element(id, obj);
If(region != null) region.put(ele);
}
}

在填充DTO对象中的数据后,在应用程序中,我调用appDataStoreService类的storeCustObjInCache()方法将内容写入磁盘。

ehcache配置为单例而不是实例。

Web应用程序使用struts(2.3.20)框架进行Web流程,使用Spring框架(4.1.2)进行DI对象管理。

JSP for UI我们迭代使用bean对象,该对象具有显示内容的列表。

我们从1.2.2迁移到ehcache 2.9.0,只是在spring xml上下文中更改了jar和配置。迁移后,我们经常开始获得以下异常。

  

net.sf.ehcache.CacheException:由于ConcurrentModificationException而无法序列化元素。这通常是在线程之间不恰当地共享线程不安全对象(例如,ArrayList,HashMap等)的结果        在net.sf.ehcache.store.disk.DiskStorageFactory.serializeElement(DiskStorageFactory.java:405)        在net.sf.ehcache.store.disk.DiskStorageFactory.write(DiskStorageFactory.java:385)        at net.sf.ehcache.store.disk.DiskStorageFactory $ DiskWriteTask.call(DiskStorageFactory.java:477)        at net.sf.ehcache.store.disk.DiskStorageFactory $ PersistentDiskWriteTask.call(DiskStorageFactory.java:1071)        at net.sf.ehcache.store.disk.DiskStorageFactory $ PersistentDiskWriteTask.call(DiskStorageFactory.java:1055)        at java.util.concurrent.FutureTask.run(FutureTask.java:266)        at java.util.concurrent.ScheduledThreadPoolExecutor $ ScheduledFutureTask.access $ 201(ScheduledThreadPoolExecutor.java:180)        at java.util.concurrent.ScheduledThreadPoolExecutor $ ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)        在java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)        at java.util.concurrent.ThreadPoolExecutor $ Worker.run(ThreadPoolExecutor.java:617)        在java.lang.Thread.run(Thread.java:745)       引起:java.util.ConcurrentModificationException        at java.util.ArrayList.writeObject(ArrayList.java:766)        at sun.reflect.GeneratedMethodAccessor8008.invoke(Unknown Source)        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)        在java.lang.reflect.Method.invoke(Method.java:497)        at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:988)        at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1496)        at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1432)        at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1178)        at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1548)        at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1509)        at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1432)        at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1178)        at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1548)        at java.io.ObjectOutputStream.defaultWriteObject(ObjectOutputStream.java:441)        在net.sf.ehcache.Element.writeObject(Element.java:875)

我理解为什么会这样,当ehcache尝试写入磁盘时,另一个线程正在修改序列化列表。我无法找到哪个线程及其可能性。

是否有一个关于如何在春季使用ehcache这样使用ehcache而没有注释的例子。

有关如何识别导致此问题的线程的任何见解

1 个答案:

答案 0 :(得分:2)

您有两种选择:

  1. 查找缓存后任何对象的所有代码路径
  2. 确保您缓存的内容是不可变的
  3. 如果您能以这种方式重构您的应用程序,我会赞成选项2。

    这个问题绝对不是由您连接不同参与者对象的方式引起的,顺便说一下,在提供的示例中没有使用注释。