#java #spring-boot #maven #heroku-api
Вопрос:
Мне нужна помощь, чтобы понять ошибку в моем приложении, помогите мне !
Консоль ошибок
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'personController' defined in file [D:IntelliJprojetcspersonapitargetclassesonedigitalinnovationpersonapicontrollerPersonController.class]: Unsatisfied dependency expressed through constructor parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'personService' defined in file [D:IntelliJprojetcspersonapitargetclassesonedigitalinnovationpersonapiservicePersonService.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [one.digitalinnovation.personapi.service.PersonService]: Constructor threw exception; nested exception is java.lang.ExceptionInInitializerError
Ответ №1:
Как сказано в сообщении об исключении:
[one.digitalinnovation.personapi.service.PersonService]: Constructor threw exception
Конструктор PersonService выдал исключение. Дважды проверьте этот конструктор, отладьте его или окружите код конструктора с помощью try…catch, чтобы зарегистрировать основную причину исключения
Комментарии:
1. Я привык к аннотации @AllArgsConstructor(onConstructor = @__(@Autowired))