本文整理汇总了Java中com.optimaize.command4j.ext.extensions.exception.exceptiontranslation.ExceptionTranslationExtension类的典型用法代码示例。如果您正苦于以下问题:Java ExceptionTranslationExtension类的具体用法?Java ExceptionTranslationExtension怎么用?Java ExceptionTranslationExtension使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ExceptionTranslationExtension类属于com.optimaize.command4j.ext.extensions.exception.exceptiontranslation包,在下文中一共展示了ExceptionTranslationExtension类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: create
import com.optimaize.command4j.ext.extensions.exception.exceptiontranslation.ExceptionTranslationExtension; //导入依赖的package包/类
public static CommandExecutor create() {
return new CommandExecutorBuilder()
.withExtension(new TimeoutExtension())
.withExtension(new StdoutLoggingExtension())
.withExtension(new ExceptionTranslationExtension())
.withExtension(new AutoRetryExtension())
.build();
//could add name-api specific extensions here ...
}
示例2: create
import com.optimaize.command4j.ext.extensions.exception.exceptiontranslation.ExceptionTranslationExtension; //导入依赖的package包/类
public static CommandExecutor create() {
return new CommandExecutorBuilder()
.withExtension(new TimeoutExtension())
.withExtension(new StdoutLoggingExtension())
.withExtension(new ExceptionTranslationExtension())
.withExtension(new AutoRetryExtension())
.build();
//could add my own here, or remove some...
}
示例3: soapDefaultMode
import com.optimaize.command4j.ext.extensions.exception.exceptiontranslation.ExceptionTranslationExtension; //导入依赖的package包/类
@NotNull
public Mode soapDefaultMode() {
return Mode.create()
.with(TimeoutExtension.TIMEOUT, Duration.millis(5000))
.with(ExceptionTranslationExtension.TRANSLATOR, new SoapDefaultServerExceptionTranslator())
.with(CustomLoggingExtension.LOGGER, new CommandExecutionLoggerFactoryImpl(logger))
;
}
示例4: restDefaultMode
import com.optimaize.command4j.ext.extensions.exception.exceptiontranslation.ExceptionTranslationExtension; //导入依赖的package包/类
@NotNull
public Mode restDefaultMode() {
return Mode.create()
.with(TimeoutExtension.TIMEOUT, Duration.millis(5000))
.with(ExceptionTranslationExtension.TRANSLATOR, new RestDefaultServerExceptionTranslator())
.with(CustomLoggingExtension.LOGGER, new CommandExecutionLoggerFactoryImpl(logger))
;
}
示例5: create
import com.optimaize.command4j.ext.extensions.exception.exceptiontranslation.ExceptionTranslationExtension; //导入依赖的package包/类
private CommandExecutor create() {
return new CommandExecutorBuilder()
.withExtension(new TimeoutExtension())
.withExtension(new ExceptionTranslationExtension())
.withExtension(new CustomLoggingExtension())
.build();
}