}
public String getConfigurationFromPage(String page) {
AssetCacheManager cacheManager = new AssetCacheManager(null);
Asset asset = new Asset("dandelion-datatables", "0.10.0", AssetType.js);
String cacheKey = cacheManager.generateCacheKey("http://" + SERVER_HOST + ":" + SERVER_PORT + "/thymeleaf/" + page, asset);
String url = "http://" + SERVER_HOST + ":" + SERVER_PORT + DandelionServlet.DANDELION_ASSETS_URL + cacheKey;
try {
URL urlLocation = new URL(url);
return ResourceUtils.getContentFromInputStream(urlLocation.openStream());
}