本文整理汇总了Java中org.springframework.beans.factory.parsing.ProblemReporter.error方法的典型用法代码示例。如果您正苦于以下问题:Java ProblemReporter.error方法的具体用法?Java ProblemReporter.error怎么用?Java ProblemReporter.error使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.springframework.beans.factory.parsing.ProblemReporter
的用法示例。
在下文中一共展示了ProblemReporter.error方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: validate
import org.springframework.beans.factory.parsing.ProblemReporter; //导入方法依赖的package包/类
@Override
public void validate(ProblemReporter problemReporter) {
if (getMetadata().isStatic()) {
// static @Bean methods have no constraints to validate -> return immediately
return;
}
if (this.configurationClass.getMetadata().isAnnotated(Configuration.class.getName())) {
if (!getMetadata().isOverridable()) {
// instance @Bean methods within @Configuration classes must be overridable to accommodate CGLIB
problemReporter.error(new NonOverridableMethodError());
}
}
}
示例2: validate
import org.springframework.beans.factory.parsing.ProblemReporter; //导入方法依赖的package包/类
public void validate(ProblemReporter problemReporter) {
// A configuration class may not be final (CGLIB limitation)
if (getMetadata().isAnnotated(Configuration.class.getName())) {
if (getMetadata().isFinal()) {
problemReporter.error(new FinalConfigurationProblem());
}
}
for (BeanMethod beanMethod : this.beanMethods) {
beanMethod.validate(problemReporter);
}
}