configFile = new File(context.getRealPath("/") + "/WEB-INF/" + configFileName);
}
String url = configFile.getAbsoluteFile().toURI().toString();
try {
Model m = FileManager.get().loadModel(url);
Configuration conf = Configuration.create(m);
context.setAttribute(SERVER_CONFIGURATION, conf);
} catch (JenaException ex) {
throw new ConfigurationException(
"Error parsing configuration file <" + url + ">: " +
ex.getMessage());