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


Java Context.findWelcomeFiles方法代码示例

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


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

示例1: registerContext

import org.apache.catalina.Context; //导入方法依赖的package包/类
/**
 * Register context.
 */
private void registerContext(Context context) {

    String contextPath = context.getPath();
    if ("/".equals(contextPath)) {
        contextPath = "";
    }
    Container host = context.getParent();

    javax.naming.Context resources = context.getResources();
    String[] welcomeFiles = context.findWelcomeFiles();
    List<WrapperMappingInfo> wrappers = new ArrayList<WrapperMappingInfo>();

    for (Container container : context.findChildren()) {
        prepareWrapperMappingInfo(context, (Wrapper) container, wrappers);

        if(log.isDebugEnabled()) {
            log.debug(sm.getString("mapperListener.registerWrapper",
                    container.getName(), contextPath, connector));
        }
    }

    mapper.addContextVersion(host.getName(), host, contextPath,
            context.getWebappVersion(), context, welcomeFiles, resources,
            wrappers, context.getMapperContextRootRedirectEnabled(),
            context.getMapperDirectoryRedirectEnabled());

    if(log.isDebugEnabled()) {
        log.debug(sm.getString("mapperListener.registerContext",
                contextPath, connector));
    }
}
 
开发者ID:liaokailin,项目名称:tomcat7,代码行数:35,代码来源:MapperListener.java

示例2: registerContext

import org.apache.catalina.Context; //导入方法依赖的package包/类
/**
 * Register context.
 */
private void registerContext(Context context) {

    String contextPath = context.getPath();
    if ("/".equals(contextPath)) {
        contextPath = "";
    }
    Container host = context.getParent();

    javax.naming.Context resources = context.getResources();
    String[] welcomeFiles = context.findWelcomeFiles();
    List<WrapperMappingInfo> wrappers = new ArrayList<WrapperMappingInfo>();

    for (Container container : context.findChildren()) {
        prepareWrapperMappingInfo(context, (Wrapper) container, wrappers);

        if(log.isDebugEnabled()) {
            log.debug(sm.getString("mapperListener.registerWrapper",
                    container.getName(), contextPath, connector));
        }
    }

    mapper.addContextVersion(host.getName(), host, contextPath,
            context.getWebappVersion(), context, welcomeFiles, resources,
            wrappers, context.getMapperContextRootRedirectEnabled(),//default false
            context.getMapperDirectoryRedirectEnabled());//default false

    if(log.isDebugEnabled()) {
        log.debug(sm.getString("mapperListener.registerContext",
                contextPath, connector));
    }
}
 
开发者ID:sunmingshuai,项目名称:apache-tomcat-7.0.73-with-comment,代码行数:35,代码来源:MapperListener.java

示例3: registerContext

import org.apache.catalina.Context; //导入方法依赖的package包/类
/**
 * Register context.
 */
private void registerContext(Context context) {

	String contextPath = context.getPath();
	if ("/".equals(contextPath)) {
		contextPath = "";
	}
	Container host = context.getParent();

	javax.naming.Context resources = context.getResources();
	String[] welcomeFiles = context.findWelcomeFiles();
	List<WrapperMappingInfo> wrappers = new ArrayList<WrapperMappingInfo>();

	for (Container container : context.findChildren()) {
		prepareWrapperMappingInfo(context, (Wrapper) container, wrappers);

		if (log.isDebugEnabled()) {
			log.debug(sm.getString("mapperListener.registerWrapper", container.getName(), contextPath, connector));
		}
	}

	mapper.addContextVersion(host.getName(), host, contextPath, context.getWebappVersion(), context, welcomeFiles,
			resources, wrappers, context.getMapperContextRootRedirectEnabled(),
			context.getMapperDirectoryRedirectEnabled());

	if (log.isDebugEnabled()) {
		log.debug(sm.getString("mapperListener.registerContext", contextPath, connector));
	}
}
 
开发者ID:how2j,项目名称:lazycat,代码行数:32,代码来源:MapperListener.java


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