//
Boolean strip = (Boolean)webJar.get("stripVersion");
//
WebJarAssetLocator locator = new WebJarAssetLocator();
String folderPath = "/" + id + "/" + version;
Set<String> assetsPaths = locator.listAssets(folderPath);
log.info("Webjars " + webJar + " resolved assets " + assetsPaths + " from " + folderPath);
for (String assetPath : assetsPaths) {
URL assetURL = WebJarAssetLocator.class.getClassLoader().getResource(assetPath);
if (assetURL != null) {
String dst = assetPath.substring(WebJarAssetLocator.WEBJARS_PATH_PREFIX.length() + 1);