我正在使用alfresco 5.0.d而我只是想加密一个属性。
我正在使用此代码获取metadetaEncyptor
bean:
ApplicationContext ctx = ApplicationContextHelper.getApplicationContext();
MetadataEncryptor metadataEncryptor (MetadataEncryptor) ctx.getBean("metadataEncryptor");
Serializablede cryptedValue = metadataEncryptor.decrypt(qname,properties.get(qname));
在我的本地代码工作正常但是当我刚刚升级我的本地以使其等于生产环境(只是恢复db和contentstore)时,我遇到了这个例外:
04030013 Not all patches could be applied
谁能告诉我问题在哪里?。