|
@ -77,11 +77,8 @@ public class LogDataTransform {
|
|
|
String rootPath = LogDataTransform.class.getResource("/").getPath();
|
|
|
File root = new File(rootPath);
|
|
|
File fileEtl = new File(path, "transform");
|
|
|
File[] files = fileEtl.listFiles(new FileFilter() {
|
|
|
@Override
|
|
|
public boolean accept(File pathname) {
|
|
|
return pathname.getName().endsWith("Transform.class");
|
|
|
}
|
|
|
File[] files = fileEtl.listFiles((pathname) -> {
|
|
|
return pathname.getName().endsWith("Transform.class");
|
|
|
});
|
|
|
ClassLoader classLoader = ClassLoader.getSystemClassLoader();
|
|
|
for (File file : files) {
|