当前位置: 首页>>代码示例>>Java>>正文


Java Context.addLifecycleListener方法代码示例

本文整理汇总了Java中org.apache.catalina.Context.addLifecycleListener方法的典型用法代码示例。如果您正苦于以下问题:Java Context.addLifecycleListener方法的具体用法?Java Context.addLifecycleListener怎么用?Java Context.addLifecycleListener使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.catalina.Context的用法示例。


在下文中一共展示了Context.addLifecycleListener方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: addContext

import org.apache.catalina.Context; //导入方法依赖的package包/类
public Context addContext(Host host, String contextPath, String contextName,
        String dir) {
    silence(host, contextName);
    Context ctx = createContext(host, contextPath);
    ctx.setName(contextName);
    ctx.setPath(contextPath);
    ctx.setDocBase(dir);
    ctx.addLifecycleListener(new FixContextListener());
    
    if (host == null) {
        getHost().addChild(ctx);
    } else {
        host.addChild(ctx);
    }
    return ctx;
}
 
开发者ID:liaokailin,项目名称:tomcat7,代码行数:17,代码来源:Tomcat.java

示例2: addWebapp

import org.apache.catalina.Context; //导入方法依赖的package包/类
/**
 * @see #addWebapp(String, String)
 *
 * @param name Ignored. The contextPath will be used
 *
 * @deprecated Use {@link #addWebapp(Host, String, String)}
 */
@Deprecated
public Context addWebapp(Host host, String contextPath, String name, String docBase) {
    silence(host, contextPath);

    Context ctx = createContext(host, contextPath);
    ctx.setPath(contextPath);
    ctx.setDocBase(docBase);

    ctx.addLifecycleListener(new DefaultWebXmlListener());
    ctx.setConfigFile(getWebappConfigFile(docBase, contextPath));

    ContextConfig ctxCfg = new ContextConfig();
    ctx.addLifecycleListener(ctxCfg);
    
    // prevent it from looking ( if it finds one - it'll have dup error )
    ctxCfg.setDefaultWebXml(noDefaultWebXmlPath());

    if (host == null) {
        getHost().addChild(ctx);
    } else {
        host.addChild(ctx);
    }

    return ctx;
}
 
开发者ID:liaokailin,项目名称:tomcat7,代码行数:33,代码来源:Tomcat.java

示例3: reload

import org.apache.catalina.Context; //导入方法依赖的package包/类
private void reload(DeployedApplication app, File fileToRemove, String newDocBase) {
    if(log.isInfoEnabled())
        log.info(sm.getString("hostConfig.reload", app.name));
    Context context = (Context) host.findChild(app.name);
    if (context.getState().isAvailable()) {
        if (fileToRemove != null && newDocBase != null) {
            context.addLifecycleListener(
                    new ExpandedDirectoryRemovalListener(fileToRemove, newDocBase));
        }
        // Reload catches and logs exceptions
        context.reload();
    } else {
        // If the context was not started (for example an error
        // in web.xml) we'll still get to try to start
        if (fileToRemove != null && newDocBase != null) {
            ExpandWar.delete(fileToRemove);
            context.setDocBase(newDocBase);
        }
        try {
            context.start();
        } catch (Exception e) {
            log.warn(sm.getString
                     ("hostConfig.context.restart", app.name), e);
        }
    }
}
 
开发者ID:liaokailin,项目名称:tomcat7,代码行数:27,代码来源:HostConfig.java

示例4: reload

import org.apache.catalina.Context; //导入方法依赖的package包/类
private void reload(DeployedApplication app, File fileToRemove, String newDocBase) {
	if (log.isInfoEnabled())
		log.info(sm.getString("hostConfig.reload", app.name));
	Context context = (Context) host.findChild(app.name);
	if (context.getState().isAvailable()) {
		if (fileToRemove != null && newDocBase != null) {
			context.addLifecycleListener(new ExpandedDirectoryRemovalListener(fileToRemove, newDocBase));
		}
		// Reload catches and logs exceptions
		context.reload();
	} else {
		// If the context was not started (for example an error
		// in web.xml) we'll still get to try to start
		if (fileToRemove != null && newDocBase != null) {
			ExpandWar.delete(fileToRemove);
			context.setDocBase(newDocBase);
		}
		try {
			context.start();
		} catch (Exception e) {
			log.warn(sm.getString("hostConfig.context.restart", app.name), e);
		}
	}
}
 
开发者ID:how2j,项目名称:lazycat,代码行数:25,代码来源:HostConfig.java

示例5: deploy

import org.apache.catalina.Context; //导入方法依赖的package包/类
/**
 * Deploy a web application for the specified user if they have such an
 * application in the defined directory within their home directory.
 *
 * @param user Username owning the application to be deployed
 * @param home Home directory of this user
 */
private void deploy(String user, String home) {

    // Does this user have a web application to be deployed?
    String contextPath = "/~" + user;
    if (host.findChild(contextPath) != null)
        return;
    File app = new File(home, directoryName);
    if (!app.exists() || !app.isDirectory())
        return;
    /*
    File dd = new File(app, "/WEB-INF/web.xml");
    if (!dd.exists() || !dd.isFile() || !dd.canRead())
        return;
    */
    host.getLogger().info(sm.getString("userConfig.deploy", user));

    // Deploy the web application for this user
    try {
        Class<?> clazz = Class.forName(contextClass);
        Context context =
          (Context) clazz.newInstance();
        context.setPath(contextPath);
        context.setDocBase(app.toString());
        clazz = Class.forName(configClass);
        LifecycleListener listener =
            (LifecycleListener) clazz.newInstance();
        context.addLifecycleListener(listener);
        host.addChild(context);
    } catch (Exception e) {
        host.getLogger().error(sm.getString("userConfig.error", user), e);
    }

}
 
开发者ID:liaokailin,项目名称:tomcat7,代码行数:41,代码来源:UserConfig.java

示例6: testWebappListenerConfigureFail

import org.apache.catalina.Context; //导入方法依赖的package包/类
@Test
public void testWebappListenerConfigureFail() throws Exception {
    // Test that if LifecycleListener on webapp fails during
    // configure_start event and if the cause of the failure is gone,
    // the context can be started without a need to redeploy it.

    // Set up a container
    Tomcat tomcat = getTomcatInstance();
    tomcat.start();
    // To not start Context automatically, as we have to configure it first
    ((ContainerBase) tomcat.getHost()).setStartChildren(false);

    FailingLifecycleListener listener = new FailingLifecycleListener();
    File root = new File("test/webapp-3.0");
    Context context = tomcat.addWebapp("", root.getAbsolutePath());
    context.addLifecycleListener(listener);

    try {
        context.start();
        fail();
    } catch (LifecycleException ex) {
        // As expected
    }
    assertEquals(LifecycleState.FAILED, context.getState());

    // The second attempt
    listener.setFail(false);
    context.start();
    assertEquals(LifecycleState.STARTED, context.getState());

    // Using a test from testBug49922() to check that the webapp is running
    ByteChunk result = getUrl("http://localhost:" + getPort() +
            "/bug49922/target");
    assertEquals("Target", result.toString());
}
 
开发者ID:liaokailin,项目名称:tomcat7,代码行数:36,代码来源:TestStandardContext.java

示例7: deploy

import org.apache.catalina.Context; //导入方法依赖的package包/类
/**
 * Deploy a web application for the specified user if they have such an
 * application in the defined directory within their home directory.
 *
 * @param user
 *            Username owning the application to be deployed
 * @param home
 *            Home directory of this user
 */
private void deploy(String user, String home) {

	// Does this user have a web application to be deployed?
	String contextPath = "/~" + user;
	if (host.findChild(contextPath) != null)
		return;
	File app = new File(home, directoryName);
	if (!app.exists() || !app.isDirectory())
		return;
	/*
	 * File dd = new File(app, "/WEB-INF/web.xml"); if (!dd.exists() ||
	 * !dd.isFile() || !dd.canRead()) return;
	 */
	host.getLogger().info(sm.getString("userConfig.deploy", user));

	// Deploy the web application for this user
	try {
		Class<?> clazz = Class.forName(contextClass);
		Context context = (Context) clazz.newInstance();
		context.setPath(contextPath);
		context.setDocBase(app.toString());
		clazz = Class.forName(configClass);
		LifecycleListener listener = (LifecycleListener) clazz.newInstance();
		context.addLifecycleListener(listener);
		host.addChild(context);
	} catch (Exception e) {
		host.getLogger().error(sm.getString("userConfig.error", user), e);
	}

}
 
开发者ID:how2j,项目名称:lazycat,代码行数:40,代码来源:UserConfig.java

示例8: registerContextListener

import org.apache.catalina.Context; //导入方法依赖的package包/类
private void registerContextListener(Context context) {
    context.addLifecycleListener(this);
}
 
开发者ID:liaokailin,项目名称:tomcat7,代码行数:4,代码来源:ThreadLocalLeakPreventionListener.java

示例9: testBug57190

import org.apache.catalina.Context; //导入方法依赖的package包/类
@Test
public void testBug57190() throws Exception {
    Tomcat tomcat = getTomcatInstance();

    Context foo1 = new StandardContext();
    foo1.setName("/foo##1");
    foo1.setPath("/foo");
    foo1.setWebappVersion("1");
    foo1.setDocBase(System.getProperty("java.io.tmpdir"));
    foo1.addLifecycleListener(new FixContextListener());
    foo1.addLifecycleListener(new SetIdListener("foo1"));
    tomcat.getHost().addChild(foo1);

    Context foo2 = new StandardContext();
    foo2.setName("/foo##2");
    foo2.setPath("/foo");
    foo2.setWebappVersion("2");
    foo2.setDocBase(System.getProperty("java.io.tmpdir"));
    foo2.addLifecycleListener(new FixContextListener());
    foo2.addLifecycleListener(new SetIdListener("foo2"));
    tomcat.getHost().addChild(foo2);

    // No file system docBase required
    Context bar = tomcat.addContext("/bar", null);
    bar.addLifecycleListener(new SetIdListener("bar"));

    // No file system docBase required
    Context ctx = tomcat.addContext("", null);
    ctx.addLifecycleListener(new SetIdListener("ROOT"));
    ctx.setCrossContext(true);

    Tomcat.addServlet(ctx, "Bug57190Servlet", new Bug57190Servlet());
    ctx.addServletMapping("/", "Bug57190Servlet");

    tomcat.start();

    ByteChunk res = getUrl("http://localhost:" + getPort() + "/");
    String body = res.toString();

    Assert.assertTrue(body, body.contains("01-bar"));
    Assert.assertTrue(body, body.contains("02-foo2"));
    Assert.assertTrue(body, body.contains("03-foo1"));
    Assert.assertTrue(body, body.contains("04-foo2"));
    Assert.assertTrue(body, body.contains("05-foo2"));
    Assert.assertTrue(body, body.contains("06-ROOT"));
    Assert.assertTrue(body, body.contains("07-ROOT"));
    Assert.assertTrue(body, body.contains("08-foo2"));
    Assert.assertTrue(body, body.contains("09-ROOT"));
}
 
开发者ID:liaokailin,项目名称:tomcat7,代码行数:50,代码来源:TestApplicationContext.java

示例10: registerContextListener

import org.apache.catalina.Context; //导入方法依赖的package包/类
private void registerContextListener(Context context) {
	context.addLifecycleListener(this);
}
 
开发者ID:how2j,项目名称:lazycat,代码行数:4,代码来源:ThreadLocalLeakPreventionListener.java


注:本文中的org.apache.catalina.Context.addLifecycleListener方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。