本文整理汇总了Java中com.sun.istack.internal.tools.ParallelWorldClassLoader类的典型用法代码示例。如果您正苦于以下问题:Java ParallelWorldClassLoader类的具体用法?Java ParallelWorldClassLoader怎么用?Java ParallelWorldClassLoader使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ParallelWorldClassLoader类属于com.sun.istack.internal.tools包,在下文中一共展示了ParallelWorldClassLoader类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: findIstack22APIs
import com.sun.istack.internal.tools.ParallelWorldClassLoader; //导入依赖的package包/类
/**
* Creates a classloader for loading JAXB/WS 2.2 jar and tools.jar
*/
private static URL[] findIstack22APIs(ClassLoader cl) throws ClassNotFoundException, IOException, ToolsJarNotFoundException {
List<URL> urls = new ArrayList<URL>();
if(Service.class.getClassLoader()==null) {
// JAX-WS API is loaded from bootstrap classloader
URL res = cl.getResource("javax/xml/ws/EndpointContext.class");
if(res==null)
throw new ClassNotFoundException("There's no JAX-WS 2.2 API in the classpath");
urls.add(ParallelWorldClassLoader.toJarUrl(res));
res = cl.getResource("javax/xml/bind/JAXBPermission.class");
if(res==null)
throw new ClassNotFoundException("There's no JAXB 2.2 API in the classpath");
urls.add(ParallelWorldClassLoader.toJarUrl(res));
}
findToolsJar(cl, urls);
return urls.toArray(new URL[urls.size()]);
}
示例2: findIstack22APIs
import com.sun.istack.internal.tools.ParallelWorldClassLoader; //导入依赖的package包/类
/**
* Creates a class loader for loading JAXB/WS 2.2 jar
*/
private static URL[] findIstack22APIs(ClassLoader cl) throws ClassNotFoundException, IOException {
List<URL> urls = new ArrayList<URL>();
if(Service.class.getClassLoader()==null) {
// JAX-WS API is loaded from bootstrap class loader
URL res = cl.getResource("javax/xml/ws/EndpointContext.class");
if(res==null)
throw new ClassNotFoundException("There's no JAX-WS 2.2 API in the classpath");
urls.add(ParallelWorldClassLoader.toJarUrl(res));
res = cl.getResource("javax/xml/bind/JAXBPermission.class");
if(res==null)
throw new ClassNotFoundException("There's no JAXB 2.2 API in the classpath");
urls.add(ParallelWorldClassLoader.toJarUrl(res));
}
return urls.toArray(new URL[urls.size()]);
}
示例3: findIstack21APIs
import com.sun.istack.internal.tools.ParallelWorldClassLoader; //导入依赖的package包/类
/**
* Creates a classloader for loading JAXB/WS 2.1 jar and tools.jar
*/
private static URL[] findIstack21APIs(ClassLoader cl) throws ClassNotFoundException, MalformedURLException, ToolsJarNotFoundException {
List<URL> urls = new ArrayList<URL>();
if(Service.class.getClassLoader()==null) {
// JAX-WS API is loaded from bootstrap classloader
URL res = cl.getResource("javax/xml/ws/EndpointReference.class");
if(res==null)
throw new ClassNotFoundException("There's no JAX-WS 2.1 API in the classpath");
urls.add(ParallelWorldClassLoader.toJarUrl(res));
res = cl.getResource("javax/xml/bind/annotation/XmlSeeAlso.class");
if(res==null)
throw new ClassNotFoundException("There's no JAXB 2.1 API in the classpath");
urls.add(ParallelWorldClassLoader.toJarUrl(res));
}
findToolsJar(cl, urls);
return urls.toArray(new URL[urls.size()]);
}
示例4: useBootClasspath
import com.sun.istack.internal.tools.ParallelWorldClassLoader; //导入依赖的package包/类
private static boolean useBootClasspath(Class clazz) {
try {
ParallelWorldClassLoader.toJarUrl(clazz.getResource('/'+clazz.getName().replace('.','/')+".class"));
return true;
} catch(Exception e) {
return false;
}
}
示例5: useBootClasspath
import com.sun.istack.internal.tools.ParallelWorldClassLoader; //导入依赖的package包/类
private static boolean useBootClasspath(Class clazz) {
try {
ParallelWorldClassLoader.toJarUrl(clazz.getResource('/' + clazz.getName().replace('.', '/') + ".class"));
return true;
} catch (Exception e) {
return false;
}
}