net.sf.ehcache.config.Configuration.addTransactionManagerLookup()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(3.9k)|赞(0)|评价(0)|浏览(174)

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

Configuration.addTransactionManagerLookup介绍

[英]Allows BeanHandler to add transaction manager lookup to the configuration.
[中]允许BeanHandler将事务管理器查找添加到配置中。

代码示例

代码示例来源:origin: jooby-project/jooby

private void transactionManagerLookup(final Config conf) {
 eh.addTransactionManagerLookup(
   newFactory("ehcache.transactionManagerLookup", conf, FactoryConfiguration::new)
   );
}

代码示例来源:origin: net.sf.ehcache/ehcache

/**
 * Builder to add a transaction manager lookup class to the cache manager, only one of these can be added.
 *
 * @param transactionManagerLookupParameter
 *            the transaction manager lookup class to use
 * @return this configuration instance
 * @throws ObjectExistsException
 *             if the transaction manager lookup has already been configured
 */
public final Configuration transactionManagerLookup(FactoryConfiguration transactionManagerLookupParameter)
    throws ObjectExistsException {
  addTransactionManagerLookup(transactionManagerLookupParameter);
  return this;
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.ehcache

/**
 * Builder to add a transaction manager lookup class to the cache manager, only one of these can be added.
 *
 * @param transactionManagerLookupParameter
 *            the transaction manager lookup class to use
 * @return this configuration instance
 * @throws ObjectExistsException
 *             if the transaction manager lookup has already been configured
 */
public final Configuration transactionManagerLookup(FactoryConfiguration transactionManagerLookupParameter)
    throws ObjectExistsException {
  addTransactionManagerLookup(transactionManagerLookupParameter);
  return this;
}

代码示例来源:origin: org.sonatype.nexus.bundles/org.sonatype.nexus.bundles.ehcache

/**
 * Builder to add a transaction manager lookup class to the cache manager, only one of these can be added.
 *
 * @param transactionManagerLookupParameter
 *            the transaction manager lookup class to use
 * @return this configuration instance
 * @throws ObjectExistsException
 *             if the transaction manager lookup has already been configured
 */
public final Configuration transactionManagerLookup(FactoryConfiguration transactionManagerLookupParameter)
    throws ObjectExistsException {
  addTransactionManagerLookup(transactionManagerLookupParameter);
  return this;
}

代码示例来源:origin: net.sf.ehcache.internal/ehcache-core

/**
 * Builder to add a transaction manager lookup class to the cache manager, only one of these can be added.
 *
 * @param transactionManagerLookupParameter
 *            the transaction manager lookup class to use
 * @return this configuration instance
 * @throws ObjectExistsException
 *             if the transaction manager lookup has already been configured
 */
public final Configuration transactionManagerLookup(FactoryConfiguration transactionManagerLookupParameter)
    throws ObjectExistsException {
  addTransactionManagerLookup(transactionManagerLookupParameter);
  return this;
}

代码示例来源:origin: org.jooby/jooby-ehcache

private void transactionManagerLookup(final Config conf) {
 eh.addTransactionManagerLookup(
   newFactory("ehcache.transactionManagerLookup", conf, FactoryConfiguration::new)
   );
}

代码示例来源:origin: org.hibernate.ogm/hibernate-ogm-ehcache

@Override
public void start() {
  try {
    final Configuration configuration = ConfigurationFactory.parseConfiguration( config.getUrl() );
    if ( jtaPlatform != null ) {
      OgmTransactionManagerLookupDelegate.transactionManager = jtaPlatform.retrieveTransactionManager();
      final FactoryConfiguration transactionManagerLookupParameter = new FactoryConfiguration();
      transactionManagerLookupParameter.setClass( OgmTransactionManagerLookupDelegate.class.getName() );
      configuration.addTransactionManagerLookup( transactionManagerLookupParameter );
    }
    cacheManager = CacheManager.create( config.getUrl() );
  }
  catch (Exception e) {
    // Wrap Exception in a ServiceException to make the stack trace more friendly
    // Otherwise a generic unable to request service is thrown
    throw logger.unableToStartDatastoreProvider( e );
  }
}

相关文章

Configuration类方法