我的项目中有一个Hazelcast
,它可以在集群中的两个成员上工作。同时,我使用Hazelcast的IScheduledExecutorService
来调度任务,该任务从DB获取一些数据并将其以固定速率放入缓存中。
问题是,我的任务类(该调度程序的任务)具有一些无法序列化的字段(IScheduledExecutorService
试图做到这一点),例如mybatis Mappers和hazelcast的CacheManager,它们获取并将数据库中的数据放入缓存。
我尝试使用Spring的功能,例如在该字段上使用@Autowire
,在类上使用@SpringAware
,但是没有运气。
可能存在一些我不知道的Hazelcast或Spring功能?任何帮助将不胜感激。
我的任务班:
@Service
@SpringAware
public class MyTask implements Runnable, Serializable {
private static final Logger LOG = LoggerFactory.getLogger(MyTask.class);
private static final String CACHE1 = "cache1";
private static final String CACHE2 = "cache2";
private static final String KEY1 = "key1";
private static final String KEY2 = "key2";
@Autowired
private MapperOne mapperOne;
@Autowired
private MapperTwo mapperTwo;
@Autowired
// if mark it 'transient' it would be null for other threads
private transient CacheManager cacheManager;
@Override
public void run() {
LOG.info("ABOUT TO UPDATE CACHE");
List<SomeStuff> stuff1 = mapperOne.getData();
List<OtherStuff> stuff2 = mapperTwo.getData();
cacheManager.getCache(CACHE1).put(KEY1, stuff1);
cacheManager.getCache(CACHE2).put(KEY2, stuff2);
}
}
我的调度程序:
@Service
public class MySchedulerService {
@Autowired
private MyTask myTask;
@PostConstruct
void init() {
if (hazelcastInstance.getCluster().getMembers().iterator().next().localMember()) {
IScheduledExecutorService notificationCacheService =
hazelcastInstance.getScheduledExecutorService("myService");
notificationCacheService.scheduleOnKeyOwnerAtFixedRate(
myTask, hazelcastInstance.getCluster().getLocalMember(), 0, 15, TimeUnit.SECONDS);
}
}
}
答案 0 :(得分:1)
@SpringAware默认是禁用的。 (请参阅此issue为何被禁用)您需要通过声明<hz:spring-aware />
或像in this example一样以编程方式启用它。