org.apache.tomcat.util.descriptor.web.WebXml.getContextParams()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(2.2k)|赞(0)|评价(0)|浏览(156)

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

WebXml.getContextParams介绍

暂无

代码示例

代码示例来源:origin: apache/ofbiz-framework

/**
 * Returns the web site ID - as configured in the web application's <code>web.xml</code> file,
 * or <code>null</code> if no web site ID was found.
 * 
 * @param webAppInfo
 * @throws IOException
 * @throws SAXException
 */
public static String getWebSiteId(WebappInfo webAppInfo) throws IOException, SAXException {
  Assert.notNull("webAppInfo", webAppInfo);
  WebXml webXml = getWebXml(webAppInfo);
  return webXml.getContextParams().get("webSiteId");
}

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

context.setEffectiveMinorVersion(webxml.getMinorVersion());
for (Entry<String, String> entry : webxml.getContextParams().entrySet()) {
  context.addParameter(entry.getKey(), entry.getValue());

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

context.setEffectiveMinorVersion(webxml.getMinorVersion());
for (Entry<String, String> entry : webxml.getContextParams().entrySet()) {
  context.addParameter(entry.getKey(), entry.getValue());

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

context.setEffectiveMinorVersion(webxml.getMinorVersion());
for (Entry<String, String> entry : webxml.getContextParams().entrySet()) {
  context.addParameter(entry.getKey(), entry.getValue());

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

if (!mergeMap(fragment.getContextParams(), contextParams,
      temp.getContextParams(), fragment, "Context Parameter")) {
    return false;
contextParams.putAll(temp.getContextParams());

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

if (!mergeMap(fragment.getContextParams(), contextParams,
      temp.getContextParams(), fragment, "Context Parameter")) {
    return false;
contextParams.putAll(temp.getContextParams());

代码示例来源:origin: org.apache.tomcat/tomcat-util-scan

if (!mergeMap(fragment.getContextParams(), contextParams,
      temp.getContextParams(), fragment, "Context Parameter")) {
    return false;
contextParams.putAll(temp.getContextParams());

相关文章

WebXml类方法