/* * Copyright 2012-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.boot.diagnostics.analyzer; import java.util.ArrayList; import java.util.List; import org.springframework.beans.factory.BeanCreationException; import org.springframework.beans.factory.BeanCurrentlyInCreationException; import org.springframework.beans.factory.InjectionPoint; import org.springframework.beans.factory.UnsatisfiedDependencyException; import org.springframework.boot.diagnostics.AbstractFailureAnalyzer; import org.springframework.boot.diagnostics.FailureAnalysis; import org.springframework.util.StringUtils; /** * An {@link AbstractFailureAnalyzer} that performs analysis of failures caused by a * {@link BeanCurrentlyInCreationException}. * * @author Andy Wilkinson */ class BeanCurrentlyInCreationFailureAnalyzer extends AbstractFailureAnalyzer<BeanCurrentlyInCreationException> { @Override protected FailureAnalysis analyze(Throwable rootFailure, BeanCurrentlyInCreationException cause) { List<BeanInCycle> cycle = new ArrayList<>(); Throwable candidate = rootFailure; int cycleStart = -1; while (candidate != null) { BeanInCycle beanInCycle = BeanInCycle.get(candidate); if (beanInCycle != null) { int index = cycle.indexOf(beanInCycle); if (index == -1) { cycle.add(beanInCycle); } cycleStart = (cycleStart == -1 ? index : cycleStart); } candidate = candidate.getCause(); } String message = buildMessage(cycle, cycleStart); return new FailureAnalysis(message, null, cause); } private String buildMessage(List<BeanInCycle> beansInCycle, int cycleStart) { StringBuilder message = new StringBuilder(); message.append(String.format("The dependencies of some of the beans in the " + "application context form a cycle:%n%n")); for (int i = 0; i < beansInCycle.size(); i++) { BeanInCycle beanInCycle = beansInCycle.get(i); if (i == cycleStart) { message.append(String.format("┌─────┐%n")); } else if (i > 0) { String leftSide = (i < cycleStart ? " " : "↑"); message.append(String.format("%s ↓%n", leftSide)); } String leftSide = i < cycleStart ? " " : "|"; message.append(String.format("%s %s%n", leftSide, beanInCycle)); } message.append(String.format("└─────┘%n")); return message.toString(); } private static final class BeanInCycle { private final String name; private final String description; private BeanInCycle(BeanCreationException ex) { this.name = ex.getBeanName(); this.description = determineDescription(ex); } private String determineDescription(BeanCreationException ex) { if (StringUtils.hasText(ex.getResourceDescription())) { return String.format(" defined in %s", ex.getResourceDescription()); } InjectionPoint failedInjectionPoint = findFailedInjectionPoint(ex); if (failedInjectionPoint != null && failedInjectionPoint.getField() != null) { return String.format(" (field %s)", failedInjectionPoint.getField()); } return ""; } private InjectionPoint findFailedInjectionPoint(BeanCreationException ex) { if (!(ex instanceof UnsatisfiedDependencyException)) { return null; } return ((UnsatisfiedDependencyException) ex).getInjectionPoint(); } @Override public int hashCode() { return this.name.hashCode(); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } return this.name.equals(((BeanInCycle) obj).name); } @Override public String toString() { return this.name + this.description; } public static BeanInCycle get(Throwable ex) { if (ex instanceof BeanCreationException) { return get((BeanCreationException) ex); } return null; } private static BeanInCycle get(BeanCreationException ex) { if (StringUtils.hasText(ex.getBeanName())) { return new BeanInCycle(ex); } return null; } } }