Package org.apache.tomcat.core

Examples of org.apache.tomcat.core.ContextManager.log()


                    ContextManager cm1=(ContextManager)ctx.currentObject();
                    // replace ${foo} in value
                    value=xm.replaceProperties( value );
                    if( cm1.getDebug() > 0 )
                        cm1.log("Setting " + name + "=" + value);
                    cm1.setProperty( name, value );
                }
            });

        // for backward compatibility, keep old version
View Full Code Here


       
        ContextManager cm1=(ContextManager)ctx.currentObject();
        // replace ${foo} in value
        value=xm.replaceProperties( value );
        if( cm1.getDebug() > 0 )
      cm1.log("Setting " + name + "=" + value);
        cm1.setProperty( name, value );
    }
      });
    }
View Full Code Here

          return;
            }
        }
                                ContextManager cm=req.getContextManager();
        cm.shutdown();
        cm.log("Exiting" );
        // same behavior as in past, because it seems
        // that stopping everything doesn't work -
        // need to figure
        // out what happens with the threads ( XXX )
                                // until we remove the System.exit() call we
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.