// just add any jar/directory set in virtual classpath to the
// repositories list before calling start on the standard WebappLoader
StringTokenizer tkn = new StringTokenizer(virtualClasspath, ";");
while (tkn.hasMoreTokens()) {
File file = new File(tkn.nextToken());
if (!file.exists()) {
continue;
}
if (file.isDirectory()) {
addRepository("file:/" + file.getAbsolutePath() + "/");
} else {
addRepository("file:/" + file.getAbsolutePath());
}
}
super.start();