我找到了关于Felix缓存的这个话题
Disabling Cache in Apache Felix
你能给我一些例子,我可以使用下面的代码,因为我找不到配置属性。
configurationProperties.setProperty(Constants.FRAMEWORK_STORAGE_CLEAN, Constants.FRAMEWORK_STORAGE_CLEAN_ONFIRSTINIT);
答案 0 :(得分:1)
您可以使用此页面中的代码: How to start and use Apache Felix from code?
在此代码中,配置属性只是map。
Map<String, Object> map = new HashMap<String, Object>();
map.put(Constants.FRAMEWORK_SYSTEMPACKAGES_EXTRA,
"some.module.i.dont.know; version=1.0.0");
你可以设置你的财产:
map.setProperty(Constants.FRAMEWORK_STORAGE_CLEAN, Constants.FRAMEWORK_STORAGE_CLEAN_ONFIRSTINIT);