本文整理汇总了Java中org.springframework.context.annotation.AutoProxyRegistrar类的典型用法代码示例。如果您正苦于以下问题:Java AutoProxyRegistrar类的具体用法?Java AutoProxyRegistrar怎么用?Java AutoProxyRegistrar使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AutoProxyRegistrar类属于org.springframework.context.annotation包,在下文中一共展示了AutoProxyRegistrar类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: selectImports
import org.springframework.context.annotation.AutoProxyRegistrar; //导入依赖的package包/类
/**
* {@inheritDoc}
* @return {@link ProxyTransactionManagementConfiguration} or
* {@code AspectJTransactionManagementConfiguration} for {@code PROXY} and
* {@code ASPECTJ} values of {@link EnableTransactionManagement#mode()}, respectively
*/
@Override
protected String[] selectImports(AdviceMode adviceMode) {
switch (adviceMode) {
case PROXY:
return new String[] {AutoProxyRegistrar.class.getName(), ProxyTransactionManagementConfiguration.class.getName()};
case ASPECTJ:
return new String[] {TransactionManagementConfigUtils.TRANSACTION_ASPECT_CONFIGURATION_CLASS_NAME};
default:
return null;
}
}
开发者ID:lamsfoundation,项目名称:lams,代码行数:18,代码来源:TransactionManagementConfigurationSelector.java
示例2: selectImports
import org.springframework.context.annotation.AutoProxyRegistrar; //导入依赖的package包/类
/**
* {@inheritDoc}
* @return {@link ProxyCachingConfiguration} or {@code AspectJCacheConfiguration} for
* {@code PROXY} and {@code ASPECTJ} values of {@link EnableCaching#mode()}, respectively
*/
@Override
public String[] selectImports(AdviceMode adviceMode) {
switch (adviceMode) {
case PROXY:
return new String[] { AutoProxyRegistrar.class.getName(), ProxyCachingConfiguration.class.getName() };
case ASPECTJ:
return new String[] { AnnotationConfigUtils.CACHE_ASPECT_CONFIGURATION_CLASS_NAME };
default:
return null;
}
}
开发者ID:lamsfoundation,项目名称:lams,代码行数:17,代码来源:CachingConfigurationSelector.java
示例3: getProxyImports
import org.springframework.context.annotation.AutoProxyRegistrar; //导入依赖的package包/类
/**
* Return the imports to use if the {@link AdviceMode} is set to {@link AdviceMode#PROXY}.
* <p>Take care of adding the necessary JSR-107 import if it is available.
*/
private String[] getProxyImports() {
List<String> result = new ArrayList<String>();
result.add(AutoProxyRegistrar.class.getName());
result.add(JetCacheProxyConfiguration.class.getName());
return result.toArray(new String[result.size()]);
}
开发者ID:alibaba,项目名称:jetcache,代码行数:11,代码来源:ConfigSelector.java
示例4: getProxyImports
import org.springframework.context.annotation.AutoProxyRegistrar; //导入依赖的package包/类
/**
* Return the imports to use if the {@link AdviceMode} is set to {@link AdviceMode#PROXY}.
* <p>Take care of adding the necessary JSR-107 import if it is available.
*/
private String[] getProxyImports() {
List<String> result = new ArrayList<String>();
result.add(AutoProxyRegistrar.class.getName());
result.add(ProxyCachingConfiguration.class.getName());
if (jsr107Present && jCacheImplPresent) {
result.add(PROXY_JCACHE_CONFIGURATION_CLASS);
}
return result.toArray(new String[result.size()]);
}
开发者ID:langtianya,项目名称:spring4-understanding,代码行数:14,代码来源:CachingConfigurationSelector.java
示例5: selectImports
import org.springframework.context.annotation.AutoProxyRegistrar; //导入依赖的package包/类
@Override
protected String[] selectImports(AdviceMode adviceMode) {
switch (adviceMode) {
case PROXY:
return new String[]{AutoProxyRegistrar.class.getName(),
TraceLogManagerConfiguration.class.getName(),
SimpleTraceConfiguration.class.getName()};
case ASPECTJ:
throw new UnsupportedOperationException("Not support AspectJ");
default:
return null;
}
}
开发者ID:acupple,项目名称:stormv-spring-tracer,代码行数:14,代码来源:TraceRegistrar.java
示例6: selectImports
import org.springframework.context.annotation.AutoProxyRegistrar; //导入依赖的package包/类
@Override
protected String[] selectImports(final AdviceMode adviceMode) {
switch (adviceMode) {
case PROXY:
return new String[] { AutoProxyRegistrar.class.getName(), ProxyLockConfiguration.class.getName() };
case ASPECTJ:
throw new UnsupportedOperationException("Advice Mode AJPECTJ is not supported yet");
default:
return null;
}
}
开发者ID:My-easy-Solutions,项目名称:spring-lock,代码行数:12,代码来源:LockConfigurationSelector.java
示例7: selectImports
import org.springframework.context.annotation.AutoProxyRegistrar; //导入依赖的package包/类
/**
* {@inheritDoc}
* @return {@link ProxyCachingConfiguration} or {@code AspectJCacheConfiguration} for
* {@code PROXY} and {@code ASPECTJ} values of {@link EnableCaching#mode()}, respectively
*/
public String[] selectImports(AdviceMode adviceMode) {
switch (adviceMode) {
case PROXY:
return new String[] { AutoProxyRegistrar.class.getName(), ProxyCachingConfiguration.class.getName() };
case ASPECTJ:
return new String[] { AnnotationConfigUtils.CACHE_ASPECT_CONFIGURATION_CLASS_NAME };
default:
return null;
}
}
开发者ID:deathspeeder,项目名称:class-guard,代码行数:16,代码来源:CachingConfigurationSelector.java
注:本文中的org.springframework.context.annotation.AutoProxyRegistrar类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论