URL url = Collections.list(ClassLoader.getSystemResources("abc.csv")).stream()
.filter(u -> !u.getPath().contains(".jar!") && u.getPath().contains("/config/"))
.findFirst()
.orElseThrow(() -> new RuntimeException("abc.csv not found in /config/"));