Search Results
OK to copy?
Examples 41 through 50 of
71 (0.0020 seconds)
Class:
org.apache.naming.ContextBindings
©,
Rating:
0% of 0,
C1
Class: org.springframework.web.context.ContextLoader ©, Rating: 0% of 0, C2
Class: org.apache.axis.components.compiler.Javac ©, Rating: 0% of 0, C1
Class: org.springframework.web.struts.ContextLoaderPlugIn ©, Rating: 0% of 0, C1
Class: org.apache.jk.common.JkMX ©, Rating: 0% of 0, C1
Class: org.springframework.core.io.support.PathMatchingResourcePatternResolver ©, Rating: 0% of 0, C2
Class: org.apache.jasper.compiler.JDTCompiler ©, Rating: 0% of 0, C3
Class: org.apache.jmeter.protocol.tcp.sampler.TCPSampler ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.protocol.tcp.sampler.TCPSampler ©, Rating: 0% of 0, C1
Class: org.apache.catalina.realm.JAASRealm ©, Rating: 0% of 0, C3
244 public static void bindClassLoader(Object name, Object token)
245 throws NamingException {
246 bindClassLoader
247 (name, token, Thread.currentThread().getContextClassLoader());
248 }
Class: org.springframework.web.context.ContextLoader ©, Rating: 0% of 0, C2
201 if (contextClassName != null) {
202 try {
203 contextClass = Class.forName(contextClassName, true, Thread.currentThread().getContextClassLoader());
204 }
205 catch (ClassNotFoundException ex) {
Class: org.apache.axis.components.compiler.Javac ©, Rating: 0% of 0, C1
096
097 // Use reflection to be able to build on all JDKs
098 ClassLoader cl = Thread.currentThread().getContextClassLoader();
099 try {
100 ClassUtils.forName(MODERN_CLASS, true, cl);
Class: org.springframework.web.struts.ContextLoaderPlugIn ©, Rating: 0% of 0, C1
150 */
151 public void setContextClassName(String contextClassName) throws ClassNotFoundException {
152 this.contextClass = Class.forName(contextClassName, true, Thread.currentThread().getContextClassLoader());
153 }
154
Class: org.apache.jk.common.JkMX ©, Rating: 0% of 0, C1
Class: org.springframework.core.io.support.PathMatchingResourcePatternResolver ©, Rating: 0% of 0, C2
199 if (cl == null) {
200 // no class loader specified -> use thread context class loader
201 cl = Thread.currentThread().getContextClassLoader();
202 }
203 Enumeration resourceUrls = cl.getResources(path);
Class: org.apache.jasper.compiler.JDTCompiler ©, Rating: 0% of 0, C3
088 ((packageName.length() != 0) ? (packageName + ".") : "")
089 + ctxt.getServletClassName();
090 final ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
091 String[] fileNames = new String[] {sourceFile};
092 String[] classNames = new String[] {targetClassName};
Class: org.apache.jmeter.protocol.tcp.sampler.TCPSampler ©, Rating: 0% of 0, C1
254 try
255 {
256 c = Class.forName(protoPrefix+className
257 ,false,Thread.currentThread().getContextClassLoader());
258 }
Class: org.apache.jmeter.protocol.tcp.sampler.TCPSampler ©, Rating: 0% of 0, C1
247 try
248 {
249 c = Class.forName(className
250 ,false,Thread.currentThread().getContextClassLoader());
251 }
Class: org.apache.catalina.realm.JAASRealm ©, Rating: 0% of 0, C3
291
292 if (isUseContextClassLoader()) {
293 ocl=Thread.currentThread().getContextClassLoader();
294 Thread.currentThread().setContextClassLoader(this.getClass().getClassLoader());
295 }