spark.staticfiles.ServletStaticFiles Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spark-core Show documentation
Show all versions of spark-core Show documentation
A micro framework for creating web applications in Kotlin and Java 8 with minimal effort
/*
* Copyright 2015 - Per Wendel
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spark.staticfiles;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import spark.resource.AbstractResourceHandler;
import spark.resource.ClassPathResource;
import spark.resource.ClassPathResourceHandler;
import spark.resource.ExternalResource;
import spark.resource.ExternalResourceHandler;
import spark.utils.Assert;
/**
* Holds the static file information when Spark is run from Servlet.
*/
public class ServletStaticFiles {
private static final Logger LOG = LoggerFactory.getLogger(ServletStaticFiles.class);
private static List staticResourceHandlers = null;
private static boolean staticResourcesSet = false;
private static boolean externalStaticResourcesSet = false;
public static boolean isStaticResourcesSet() {
return staticResourcesSet;
}
public static boolean isExternalStaticResourcesSet() {
return externalStaticResourcesSet;
}
public static List staticResourceHandlers() {
return staticResourceHandlers;
}
/**
* Configures location for static resources
*
* @param folder the location
*/
public static void configureStaticResources(String folder) {
Assert.notNull(folder, "'folder' must not be null");
if (!isStaticResourcesSet()) {
try {
ClassPathResource resource = new ClassPathResource(folder);
if (!resource.getFile().isDirectory()) {
LOG.error("Static resource location must be a folder");
return;
}
if (staticResourceHandlers == null) {
staticResourceHandlers = new ArrayList<>();
}
staticResourceHandlers.add(new ClassPathResourceHandler(folder, "index.html"));
LOG.info("StaticResourceHandler configured with folder = " + folder);
} catch (IOException e) {
LOG.error("Error when creating StaticResourceHandler", e);
}
staticResourcesSet = true;
}
}
/**
* Configures location for static resources
*
* @param folder the location
*/
public static void configureExternalStaticResources(String folder) {
Assert.notNull(folder, "'folder' must not be null");
if (!isExternalStaticResourcesSet()) {
try {
ExternalResource resource = new ExternalResource(folder);
if (!resource.getFile().isDirectory()) {
LOG.error("External Static resource location must be a folder");
return;
}
if (staticResourceHandlers == null) {
staticResourceHandlers = new ArrayList<>();
}
staticResourceHandlers.add(new ExternalResourceHandler(folder, "index.html"));
LOG.info("External StaticResourceHandler configured with folder = " + folder);
} catch (IOException e) {
LOG.error("Error when creating external StaticResourceHandler", e);
}
externalStaticResourcesSet = true;
}
}
}