本文整理匯總了Java中org.apache.catalina.Host.findChildren方法的典型用法代碼示例。如果您正苦於以下問題:Java Host.findChildren方法的具體用法?Java Host.findChildren怎麽用?Java Host.findChildren使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.catalina.Host
的用法示例。
在下文中一共展示了Host.findChildren方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: registerHost
import org.apache.catalina.Host; //導入方法依賴的package包/類
/**
* Register host.
*/
private void registerHost(Host host) {
String[] aliases = host.findAliases();
mapper.addHost(host.getName(), aliases, host);
for (Container container : host.findChildren()) {
if (container.getState().isAvailable()) {
registerContext((Context) container);
}
}
if(log.isDebugEnabled()) {
log.debug(sm.getString("mapperListener.registerHost",
host.getName(), domain, connector));
}
}
示例2: createMBeans
import org.apache.catalina.Host; //導入方法依賴的package包/類
/**
* Create the MBeans for the specified Host and its nested components.
*
* @param host Host for which to create MBeans
*
* @exception Exception if an exception is thrown during MBean creation
*/
protected void createMBeans(Host host) throws Exception {
// Create the MBean for the Host itself
if (log.isDebugEnabled()) {
log.debug("Creating MBean for Host " + host);
}
//MBeanUtils.createMBean(host);
host.addContainerListener(this);
if (host instanceof StandardHost) {
((StandardHost) host).addPropertyChangeListener(this);
}
// Create the MBeans for the associated nested components
Realm eRealm = host.getParent().getRealm();
Realm hRealm = host.getRealm();
if ((hRealm != null) && (hRealm != eRealm)) {
if (log.isDebugEnabled())
log.debug("Creating MBean for Realm " + hRealm);
//MBeanUtils.createMBean(hRealm);
}
// Create the MBeans for each child Context
Container contexts[] = host.findChildren();
for (int k = 0; k < contexts.length; k++) {
createMBeans((Context) contexts[k]);
}
}
示例3: destroyMBeans
import org.apache.catalina.Host; //導入方法依賴的package包/類
/**
* Deregister the MBeans for the specified Host and its nested components.
*
* @param host Host for which to destroy MBeans
*
* @exception Exception if an exception is thrown during MBean destruction
*/
protected void destroyMBeans(Host host) throws Exception {
// Deregister ourselves as a ContainerListener
host.removeContainerListener(this);
// Deregister the MBeans for each child Context
Container contexts[] = host.findChildren();
for (int k = 0; k < contexts.length; k++) {
destroyMBeans((Context) contexts[k]);
}
// Deregister the MBeans for the associated nested components
Realm eRealm = host.getParent().getRealm();
Realm hRealm = host.getRealm();
if ((hRealm != null) && (hRealm != eRealm)) {
if (log.isDebugEnabled())
log.debug("Destroying MBean for Realm " + hRealm);
//MBeanUtils.destroyMBean(hRealm);
}
// Deregister the MBean for the Host itself
if (log.isDebugEnabled()) {
log.debug("Destroying MBean for Host " + host);
}
//MBeanUtils.destroyMBean(host);
}
示例4: registerHost
import org.apache.catalina.Host; //導入方法依賴的package包/類
/**
* Register host.
*/
private void registerHost(Host host) {
String[] aliases = host.findAliases();
mapper.addHost(host.getName(), aliases, host);
for (Container container : host.findChildren()) {
if (container.getState().isAvailable()) {
registerContext((Context) container);
}
}
if (log.isDebugEnabled()) {
log.debug(sm.getString("mapperListener.registerHost", host.getName(), domain, connector));
}
}
示例5: registerListenersForHost
import org.apache.catalina.Host; //導入方法依賴的package包/類
private void registerListenersForHost(Host host) {
for (Container contextContainer : host.findChildren()) {
Context context = (Context) contextContainer;
registerContextListener(context);
}
}
示例6: createMBeans
import org.apache.catalina.Host; //導入方法依賴的package包/類
/**
* Create the MBeans for the specified Host and its nested components.
*
* @param host Host for which to create MBeans
*
* @exception Exception if an exception is thrown during MBean creation
*/
protected void createMBeans(Host host) throws Exception {
// Create the MBean for the Host itself
if (debug >= 3) {
log("Creating MBean for Host " + host);
}
MBeanUtils.createMBean(host);
host.addContainerListener(this);
if (host instanceof StandardHost) {
((StandardHost) host).addPropertyChangeListener(this);
}
// Create the MBeans for the associated nested components
Logger eLogger = host.getParent().getLogger();
Logger hLogger = host.getLogger();
if ((hLogger != null) && (hLogger != eLogger)) {
if (debug >= 3)
log("Creating MBean for Logger " + hLogger);
MBeanUtils.createMBean(hLogger);
}
Realm eRealm = host.getParent().getRealm();
Realm hRealm = host.getRealm();
if ((hRealm != null) && (hRealm != eRealm)) {
if (debug >= 3)
log("Creating MBean for Realm " + hRealm);
MBeanUtils.createMBean(hRealm);
}
// Create the MBeans for the associated Valves
if (host instanceof StandardHost) {
Valve hValves[] = ((StandardHost)host).getValves();
for (int k = 0; k < hValves.length; k++) {
if (debug >= 3)
log("Creating MBean for Valve " + hValves[k]);
MBeanUtils.createMBean(hValves[k]);
}
}
// Create the MBeans for each child Context
Container contexts[] = host.findChildren();
for (int k = 0; k < contexts.length; k++) {
createMBeans((Context) contexts[k]);
}
// Create the MBeans for DefaultContext
DefaultContext dcontext = host.getDefaultContext();
if (dcontext != null) {
dcontext.setParent(host);
createMBeans(dcontext);
}
}
示例7: destroyMBeans
import org.apache.catalina.Host; //導入方法依賴的package包/類
/**
* Deregister the MBeans for the specified Host and its nested components.
*
* @param host Host for which to destroy MBeans
*
* @exception Exception if an exception is thrown during MBean destruction
*/
protected void destroyMBeans(Host host) throws Exception {
// Deregister ourselves as a ContainerListener
host.removeContainerListener(this);
// Deregister the MBeans for each child Context
Container contexts[] = host.findChildren();
for (int k = 0; k < contexts.length; k++) {
destroyMBeans((Context) contexts[k]);
}
// Deregister the MBeans for the associated Valves
if (host instanceof StandardHost) {
Valve hValves[] = ((StandardHost)host).getValves();
for (int k = 0; k < hValves.length; k++) {
if (debug >= 3)
log("Destroying MBean for Valve " + hValves[k]);
MBeanUtils.destroyMBean(hValves[k], host);
}
}
// Deregister the MBeans for the associated nested components
Realm eRealm = host.getParent().getRealm();
Realm hRealm = host.getRealm();
if ((hRealm != null) && (hRealm != eRealm)) {
if (debug >= 3)
log("Destroying MBean for Realm " + hRealm);
MBeanUtils.destroyMBean(hRealm);
}
Logger eLogger = host.getParent().getLogger();
Logger hLogger = host.getLogger();
if ((hLogger != null) && (hLogger != eLogger)) {
if (debug >= 3)
log("Destroying MBean for Logger " + hLogger);
MBeanUtils.destroyMBean(hLogger);
}
// Deregister the MBean for the Host itself
if (debug >= 3) {
log("Destroying MBean for Host " + host);
}
MBeanUtils.destroyMBean(host);
}
示例8: registerListenersForHost
import org.apache.catalina.Host; //導入方法依賴的package包/類
private void registerListenersForHost(Host host) {
for (Container contextContainer : host.findChildren()) {
Context context = (Context) contextContainer;
registerContextListener(context);
}
}