*/
public MatchUrlModule (String name, Config globalConfig) throws IOException{
super(name, globalConfig);
String filename = getModuleConfig().getString("url.pattern.file");
String filepath = FileUtil.getFilePathFromClasspath(filename);
patterns = new UrlPatterns(filepath); // TODO: hotspots should be singleton, otherwise we have two copies in ram.
}