org.apache.tomcat.util.modeler.Registry.load()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(7.4k)|赞(0)|评价(0)|浏览(115)

本文整理了Java中org.apache.tomcat.util.modeler.Registry.load方法的一些代码示例,展示了Registry.load的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Registry.load方法的具体详情如下:
包路径:org.apache.tomcat.util.modeler.Registry
类名称:Registry
方法名:load

Registry.load介绍

[英]Experimental.
[中]实验的

代码示例

代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7

/**
 * @param sourceType
 * @param source
 * @param param
 * @throws Exception
 */
private void loadDescriptors(String sourceType, Object source,
    String param) throws Exception {
  load(sourceType, source, param);
}

代码示例来源:origin: org.apache.coyote/com.springsource.org.apache.coyote

/**
 * @param sourceType
 * @param source
 * @param param
 * @throws Exception
 */
private void loadDescriptors(String sourceType, Object source,
    String param) throws Exception {
  load(sourceType, source, param);
}

代码示例来源:origin: org.apache.geronimo.ext.tomcat/util

/**
 * @param sourceType
 * @param source
 * @param param
 * @throws Exception
 */
private void loadDescriptors(String sourceType, Object source,
    String param) throws Exception {
  load(sourceType, source, param);
}

代码示例来源:origin: org.apache.coyote.springsource/com.springsource.org.apache.coyote.springsource

/** 
 * Load an extended mlet file. The source can be an URL, File or
 * InputStream. 
 * 
 * All mbeans will be instantiated, registered and the attributes will be 
 * set. The result is a list of ObjectNames.
 *
 * @param source InputStream or URL of the file
 * @param cl ClassLoader to be used to load the mbeans, or null to use the
 *        default JMX mechanism ( i.e. all registered loaders )
 * @return List of ObjectName for the loaded mbeans
 * @throws Exception
 * 
 * @since 1.1
 */ 
public List loadMBeans( Object source, ClassLoader cl )
    throws Exception
{
  return load("MbeansSource", source, null );
}

代码示例来源:origin: jboss.web/jbossweb

/** 
 * Load an extended mlet file. The source can be an URL, File or
 * InputStream. 
 * 
 * All mbeans will be instantiated, registered and the attributes will be 
 * set. The result is a list of ObjectNames.
 *
 * @param source InputStream or URL of the file
 * @param cl ClassLoader to be used to load the mbeans, or null to use the
 *        default JMX mechanism ( i.e. all registered loaders )
 * @return List of ObjectName for the loaded mbeans
 * @throws Exception
 * 
 * @since 1.1
 */ 
public List loadMBeans( Object source, ClassLoader cl )
    throws Exception
{
  return load("MbeansSource", source, null );
}

代码示例来源:origin: org.apache.geronimo.ext.tomcat/util

/** 
 * Load an extended mlet file. The source can be an URL, File or
 * InputStream. 
 * 
 * All mbeans will be instantiated, registered and the attributes will be 
 * set. The result is a list of ObjectNames.
 *
 * @param source InputStream or URL of the file
 * @param cl ClassLoader to be used to load the mbeans, or null to use the
 *        default JMX mechanism ( i.e. all registered loaders )
 * @return List of ObjectName for the loaded mbeans
 * @throws Exception
 * 
 * @since 1.1
 */ 
@Override
public List<ObjectName> loadMBeans( Object source, ClassLoader cl )
    throws Exception
{
  return load("MbeansSource", source, null );
}

代码示例来源:origin: org.jboss.web/jbossweb

/** 
 * Load an extended mlet file. The source can be an URL, File or
 * InputStream. 
 * 
 * All mbeans will be instantiated, registered and the attributes will be 
 * set. The result is a list of ObjectNames.
 *
 * @param source InputStream or URL of the file
 * @param cl ClassLoader to be used to load the mbeans, or null to use the
 *        default JMX mechanism ( i.e. all registered loaders )
 * @return List of ObjectName for the loaded mbeans
 * @throws Exception
 * 
 * @since 1.1
 */ 
public List loadMBeans( Object source, ClassLoader cl )
    throws Exception
{
  return load("MbeansSource", source, null );
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7

/** 
 * Load an extended mlet file. The source can be an URL, File or
 * InputStream. 
 * 
 * All mbeans will be instantiated, registered and the attributes will be 
 * set. The result is a list of ObjectNames.
 *
 * @param source InputStream or URL of the file
 * @param cl ClassLoader to be used to load the mbeans, or null to use the
 *        default JMX mechanism ( i.e. all registered loaders )
 * @return List of ObjectName for the loaded mbeans
 * @throws Exception
 * 
 * @since 1.1
 */ 
public List<ObjectName> loadMBeans( Object source, ClassLoader cl )
    throws Exception
{
  return load("MbeansSource", source, null );
}

代码示例来源:origin: org.apache.coyote/com.springsource.org.apache.coyote

/** 
 * Load an extended mlet file. The source can be an URL, File or
 * InputStream. 
 * 
 * All mbeans will be instantiated, registered and the attributes will be 
 * set. The result is a list of ObjectNames.
 *
 * @param source InputStream or URL of the file
 * @param cl ClassLoader to be used to load the mbeans, or null to use the
 *        default JMX mechanism ( i.e. all registered loaders )
 * @return List of ObjectName for the loaded mbeans
 * @throws Exception
 * 
 * @since 1.1
 */ 
@Override
public List<ObjectName> loadMBeans( Object source, ClassLoader cl )
    throws Exception
{
  return load("MbeansSource", source, null );
}

代码示例来源:origin: jboss.web/jbossweb

/** Experimental. Will become private, some code may still use it
 *
 * @param sourceType
 * @param source
 * @param param
 * @throws Exception
 * @deprecated
 */
public void loadDescriptors( String sourceType, Object source, String param)
  throws Exception
{
  List mbeans=load( sourceType, source, param );
  if( mbeans == null) return;
  Iterator itr=mbeans.iterator();
  while( itr.hasNext() ) {
    Object mb=itr.next();
    if( mb instanceof ManagedBean) {
      addManagedBean((ManagedBean)mb);
    }
  }
}

代码示例来源:origin: org.apache.coyote.springsource/com.springsource.org.apache.coyote.springsource

/** Experimental. Will become private, some code may still use it
 *
 * @param sourceType
 * @param source
 * @param param
 * @throws Exception
 * @deprecated
 */
public void loadDescriptors( String sourceType, Object source, String param)
  throws Exception
{
  List mbeans=load( sourceType, source, param );
  if( mbeans == null) return;
  Iterator itr=mbeans.iterator();
  while( itr.hasNext() ) {
    Object mb=itr.next();
    if( mb instanceof ManagedBean) {
      addManagedBean((ManagedBean)mb);
    }
  }
}

代码示例来源:origin: org.jboss.web/jbossweb

/** Experimental. Will become private, some code may still use it
 *
 * @param sourceType
 * @param source
 * @param param
 * @throws Exception
 * @deprecated
 */
public void loadDescriptors( String sourceType, Object source, String param)
  throws Exception
{
  List mbeans=load( sourceType, source, param );
  if( mbeans == null) return;
  Iterator itr=mbeans.iterator();
  while( itr.hasNext() ) {
    Object mb=itr.next();
    if( mb instanceof ManagedBean) {
      addManagedBean((ManagedBean)mb);
    }
  }
}

代码示例来源:origin: codefollower/Tomcat-Research

/** Lookup the component descriptor in the package and
 * in the parent packages.
 *
 * @param packageName
 */
public void loadDescriptors( String packageName, ClassLoader classLoader  ) {
  String res=packageName.replace( '.', '/');
  if( log.isTraceEnabled() ) {
    log.trace("Finding descriptor " + res );
  }
  if( searchedPaths.get( packageName ) != null ) {
    return;
  }
  String descriptors = res + "/mbeans-descriptors.xml";
  URL dURL = classLoader.getResource( descriptors );
  if (dURL == null) {
    return;
  }
  log.debug( "Found " + dURL);
  searchedPaths.put( packageName,  dURL );
  try {
    load("MbeansDescriptorsDigesterSource", dURL, null);
  } catch(Exception ex ) {
    log.error("Error loading " + dURL);
  }
}

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

/**
 * Lookup the component descriptor in the package and in the parent
 * packages.
 *
 * @param packageName The package name
 * @param classLoader The class loader
 */
public void loadDescriptors(String packageName, ClassLoader classLoader) {
  String res = packageName.replace('.', '/');
  if (log.isTraceEnabled()) {
    log.trace("Finding descriptor " + res);
  }
  if (searchedPaths.get(packageName) != null) {
    return;
  }
  String descriptors = res + "/mbeans-descriptors.xml";
  URL dURL = classLoader.getResource(descriptors);
  if (dURL == null) {
    return;
  }
  log.debug("Found " + dURL);
  searchedPaths.put(packageName, dURL);
  try {
    load("MbeansDescriptorsDigesterSource", dURL, null);
  } catch (Exception ex) {
    log.error("Error loading " + dURL);
  }
}

代码示例来源:origin: codefollower/Tomcat-Research

load("MbeansDescriptorsIntrospectionSource", beanClass, type);

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

load("MbeansDescriptorsIntrospectionSource", beanClass, type);

相关文章