本文整理了Java中freemarker.template.Configuration.unsetAttemptExceptionReporter()
方法的一些代码示例,展示了Configuration.unsetAttemptExceptionReporter()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Configuration.unsetAttemptExceptionReporter()
方法的具体详情如下:
包路径:freemarker.template.Configuration
类名称:Configuration
方法名:unsetAttemptExceptionReporter
[英]Resets the setting to its default, as if it was never set. This means that when you change the incompatibe_improvements setting later, the default will also change as appropriate. Also #isAttemptExceptionReporterExplicitlySet() will return false.
[中]将设置重置为默认设置,就像从未设置一样。这意味着,当您稍后更改“不兼容改进”设置时,默认设置也会相应更改。此外#isAttemptExceptionReporterExplicitlySet()将返回false。
代码示例来源:origin: org.freemarker/freemarker
AttemptExceptionReporter.LOG_WARN_REPORTER);
} else if (DEFAULT.equalsIgnoreCase(value) && this instanceof Configuration) {
((Configuration) this).unsetAttemptExceptionReporter();
} else {
throw invalidSettingValueException(name, value);
代码示例来源:origin: org.freemarker/freemarker
unsetAttemptExceptionReporter();
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.freemarker
AttemptExceptionReporter.LOG_WARN_REPORTER);
} else if (DEFAULT.equalsIgnoreCase(value) && this instanceof Configuration) {
((Configuration) this).unsetAttemptExceptionReporter();
} else {
throw invalidSettingValueException(name, value);
代码示例来源:origin: org.freemarker/freemarker-gae
AttemptExceptionReporter.LOG_WARN_REPORTER);
} else if (DEFAULT.equalsIgnoreCase(value) && this instanceof Configuration) {
((Configuration) this).unsetAttemptExceptionReporter();
} else {
throw invalidSettingValueException(name, value);
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.freemarker
unsetAttemptExceptionReporter();
代码示例来源:origin: org.freemarker/freemarker-gae
unsetAttemptExceptionReporter();
内容来源于网络,如有侵权,请联系作者删除!