Hi guys,
I created a modifies SpringLiquibase instance with the following modifications, because in weblogic the application can't find the selected classes in the zip file.
SpringResourceOpener:
isPrefixPresent method: added JarFile zipfile = new JarFile(zipFilePath, false);
String internalPath = zipAndFile[1];
try {
Enumeration entries = zipfile.entries();
while (entries.hasMoreElements()) {
JarEntry entry = entries.nextElement();
if (("/"+entry.getName()).startsWith(internalPath)) {Can you check this?
String internalPath = zipAndFile[1];
try {
Enumeration entries = zipfile.entries();
while (entries.hasMoreElements()) {
JarEntry entry = entries.nextElement();
if (("/"+entry.getName()).startsWith(internalPath)) {Can you check this?
Thanks