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

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

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

WebXml.getPostConstructMethods介绍

暂无

代码示例

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

@Override
  public void end(String namespace, String name) throws Exception {
    Object[] params = (Object[]) digester.peekParams();
    if (params != null && params.length == 2) {
      WebXml webXml = (WebXml) digester.peek();
      if (postConstruct) {
        if (webXml.getPostConstructMethods().containsKey(params[0])) {
          throw new IllegalArgumentException(WebRuleSet.sm.getString(
              "webRuleSet.postconstruct.duplicate", params[0]));
        }
      } else {
        if (webXml.getPreDestroyMethods().containsKey(params[0])) {
          throw new IllegalArgumentException(WebRuleSet.sm.getString(
              "webRuleSet.predestroy.duplicate", params[0]));
        }
      }
    }
    super.end(namespace, name);
  }
}

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

@Override
  public void end(String namespace, String name) throws Exception {
    Object[] params = (Object[]) digester.peekParams();
    if (params != null && params.length == 2) {
      WebXml webXml = (WebXml) digester.peek();
      if (postConstruct) {
        if (webXml.getPostConstructMethods().containsKey(params[0])) {
          throw new IllegalArgumentException(WebRuleSet.sm.getString(
              "webRuleSet.postconstruct.duplicate", params[0]));
        }
      } else {
        if (webXml.getPreDestroyMethods().containsKey(params[0])) {
          throw new IllegalArgumentException(WebRuleSet.sm.getString(
              "webRuleSet.predestroy.duplicate", params[0]));
        }
      }
    }
    super.end(namespace, name);
  }
}

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

@Override
  public void end(String namespace, String name) throws Exception {
    Object[] params = (Object[]) digester.peekParams();
    if (params != null && params.length == 2) {
      WebXml webXml = (WebXml) digester.peek();
      if (postConstruct) {
        if (webXml.getPostConstructMethods().containsKey(params[0])) {
          throw new IllegalArgumentException(WebRuleSet.sm.getString(
              "webRuleSet.postconstruct.duplicate", params[0]));
        }
      } else {
        if (webXml.getPreDestroyMethods().containsKey(params[0])) {
          throw new IllegalArgumentException(WebRuleSet.sm.getString(
              "webRuleSet.predestroy.duplicate", params[0]));
        }
      }
    }
    super.end(namespace, name);
  }
}

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

webxml.getPostConstructMethods().entrySet()) {
context.addPostConstructMethod(entry.getKey(), entry.getValue());

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

webxml.getPostConstructMethods().entrySet()) {
context.addPostConstructMethod(entry.getKey(), entry.getValue());

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

webxml.getPostConstructMethods().entrySet()) {
context.addPostConstructMethod(entry.getKey(), entry.getValue());

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

if (!mergeLifecycleCallback(fragment.getPostConstructMethods(),
      temp.getPostConstructMethods(), fragment,
      "Post Construct Methods")) {
    return false;
postConstructMethods.putAll(temp.getPostConstructMethods());

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

if (!mergeLifecycleCallback(fragment.getPostConstructMethods(),
      temp.getPostConstructMethods(), fragment,
      "Post Construct Methods")) {
    return false;
postConstructMethods.putAll(temp.getPostConstructMethods());

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

if (!mergeLifecycleCallback(fragment.getPostConstructMethods(),
      temp.getPostConstructMethods(), fragment,
      "Post Construct Methods")) {
    return false;
postConstructMethods.putAll(temp.getPostConstructMethods());

相关文章

WebXml类方法