本文整理了Java中net.sf.ehcache.config.Configuration.addTransactionManagerLookup()
方法的一些代码示例,展示了Configuration.addTransactionManagerLookup()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Configuration.addTransactionManagerLookup()
方法的具体详情如下:
包路径:net.sf.ehcache.config.Configuration
类名称: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 );
}
}
内容来源于网络,如有侵权,请联系作者删除!