org.apache.activemq.ActiveMQConnectionFactory.buildFromMap()方法的使用及代码示例

x33g5p2x  于2022-01-15 转载在 其他  
字(5.4k)|赞(0)|评价(0)|浏览(81)

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

ActiveMQConnectionFactory.buildFromMap介绍

暂无

代码示例

代码示例来源:origin: apache/activemq

@SuppressWarnings({ "unchecked", "rawtypes" })
@Override
public void buildFromProperties(Properties properties) {
  if (properties == null) {
    properties = new Properties();
  }
  String temp = properties.getProperty(Context.PROVIDER_URL);
  if (temp == null || temp.length() == 0) {
    temp = properties.getProperty("brokerURL");
  }
  if (temp != null && temp.length() > 0) {
    setBrokerURL(temp);
  }
  Map<String, Object> p = new HashMap(properties);
  buildFromMap(p);
}

代码示例来源:origin: apache/activemq

if (buildFromMap(jmsOptionsMap)) {
  if (!jmsOptionsMap.isEmpty()) {
    String msg = "There are " + jmsOptionsMap.size()
CompositeData data = URISupport.parseComposite(this.brokerURL);
Map<String,Object> jmsOptionsMap = IntrospectionSupport.extractProperties(data.getParameters(), "jms.");
if (buildFromMap(jmsOptionsMap)) {
  if (!jmsOptionsMap.isEmpty()) {
    String msg = "There are " + jmsOptionsMap.size()

代码示例来源:origin: pierre/meteo

@Override
public void buildFromProperties(Properties properties) {
  if (properties == null) {
    properties = new Properties();
  }
  String temp = properties.getProperty(Context.PROVIDER_URL);
  if (temp == null || temp.length() == 0) {
    temp = properties.getProperty("brokerURL");
  }
  if (temp != null && temp.length() > 0) {
    setBrokerURL(temp);
  }
  Map<String, Object> p = new HashMap(properties);
  buildFromMap(p);
}

代码示例来源:origin: org.apache.activemq/activemq-osgi

@SuppressWarnings({ "unchecked", "rawtypes" })
@Override
public void buildFromProperties(Properties properties) {
  if (properties == null) {
    properties = new Properties();
  }
  String temp = properties.getProperty(Context.PROVIDER_URL);
  if (temp == null || temp.length() == 0) {
    temp = properties.getProperty("brokerURL");
  }
  if (temp != null && temp.length() > 0) {
    setBrokerURL(temp);
  }
  Map<String, Object> p = new HashMap(properties);
  buildFromMap(p);
}

代码示例来源:origin: org.apache.activemq/activemq-client

@SuppressWarnings({ "unchecked", "rawtypes" })
@Override
public void buildFromProperties(Properties properties) {
  if (properties == null) {
    properties = new Properties();
  }
  String temp = properties.getProperty(Context.PROVIDER_URL);
  if (temp == null || temp.length() == 0) {
    temp = properties.getProperty("brokerURL");
  }
  if (temp != null && temp.length() > 0) {
    setBrokerURL(temp);
  }
  Map<String, Object> p = new HashMap(properties);
  buildFromMap(p);
}

代码示例来源:origin: org.apache.activemq/activemq-all

@SuppressWarnings({ "unchecked", "rawtypes" })
@Override
public void buildFromProperties(Properties properties) {
  if (properties == null) {
    properties = new Properties();
  }
  String temp = properties.getProperty(Context.PROVIDER_URL);
  if (temp == null || temp.length() == 0) {
    temp = properties.getProperty("brokerURL");
  }
  if (temp != null && temp.length() > 0) {
    setBrokerURL(temp);
  }
  Map<String, Object> p = new HashMap(properties);
  buildFromMap(p);
}

代码示例来源:origin: org.apache.activemq/activemq-client

if (buildFromMap(jmsOptionsMap)) {
  if (!jmsOptionsMap.isEmpty()) {
    String msg = "There are " + jmsOptionsMap.size()
CompositeData data = URISupport.parseComposite(this.brokerURL);
Map<String,Object> jmsOptionsMap = IntrospectionSupport.extractProperties(data.getParameters(), "jms.");
if (buildFromMap(jmsOptionsMap)) {
  if (!jmsOptionsMap.isEmpty()) {
    String msg = "There are " + jmsOptionsMap.size()

代码示例来源:origin: org.apache.activemq/activemq-all

if (buildFromMap(jmsOptionsMap)) {
  if (!jmsOptionsMap.isEmpty()) {
    String msg = "There are " + jmsOptionsMap.size()
CompositeData data = URISupport.parseComposite(this.brokerURL);
Map<String,Object> jmsOptionsMap = IntrospectionSupport.extractProperties(data.getParameters(), "jms.");
if (buildFromMap(jmsOptionsMap)) {
  if (!jmsOptionsMap.isEmpty()) {
    String msg = "There are " + jmsOptionsMap.size()

代码示例来源:origin: org.apache.activemq/activemq-osgi

if (buildFromMap(jmsOptionsMap)) {
  if (!jmsOptionsMap.isEmpty()) {
    String msg = "There are " + jmsOptionsMap.size()
CompositeData data = URISupport.parseComposite(this.brokerURL);
Map<String,Object> jmsOptionsMap = IntrospectionSupport.extractProperties(data.getParameters(), "jms.");
if (buildFromMap(jmsOptionsMap)) {
  if (!jmsOptionsMap.isEmpty()) {
    String msg = "There are " + jmsOptionsMap.size()

代码示例来源:origin: pierre/meteo

/**
 * Sets the <a
 * href="http://activemq.apache.org/configuring-transports.html">connection
 * URL</a> used to connect to the ActiveMQ broker.
 */
public void setBrokerURL(String brokerURL) {
  this.brokerURL = createURI(brokerURL);
  // Use all the properties prefixed with 'jms.' to set the connection
  // factory
  // options.
  if (this.brokerURL.getQuery() != null) {
    // It might be a standard URI or...
    try {
      Map map = URISupport.parseQuery(this.brokerURL.getQuery());
      if (buildFromMap(IntrospectionSupport.extractProperties(map, "jms."))) {
        this.brokerURL = URISupport.createRemainingURI(this.brokerURL, map);
      }
    } catch (URISyntaxException e) {
    }
  } else {
    // It might be a composite URI.
    try {
      CompositeData data = URISupport.parseComposite(this.brokerURL);
      if (buildFromMap(IntrospectionSupport.extractProperties(data.getParameters(), "jms."))) {
        this.brokerURL = data.toURI();
      }
    } catch (URISyntaxException e) {
    }
  }
}

相关文章

微信公众号

最新文章

更多

ActiveMQConnectionFactory类方法