if ((contextPath != null) && !ResourcePublisherFactory.ignoreContext()) {
path = path + "/" + contextPath;
}
MethodInvokerFactory invokerFactory = ProviderRegistry.getProvider(MethodInvokerFactory.class);
if (invokerFactory == null) {
invokerFactory = new DefaultMethodInvokerFactory();
}
StringTokenizer st = new StringTokenizer(resourceIntfs, ",");
while (st.hasMoreTokens()) {
String className = st.nextToken().trim();
Class<?> clazz = Classes.forName(className);