После создания файла войны мой весенний загрузочный проект не может быть запущен командой java-jar - PullRequest
0 голосов
/ 29 марта 2019

Я создал новый проект Java, используя jhipster с springboot, liquidbase, hibernate exc.технологий, но когда я пытаюсь развернуть свой проект, вызвав файл «java -jar ...... SNAPSHOT.war», он показывает ошибку, такую ​​как

"The following profiles are active: prod
   2019-03-29 17:12:25.912  WARN 21772 --- [           main] 
ConfigServletWebServerApplicationContext : Exception encountered 
during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: 
Unable to start web server; nested exception is java.lang.RuntimeException: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'servletEndpointRegistrar' defined in class path resource [org/springframework/boot/actuate/autoconfigure/endpoint/web/ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.boot.actuate.endpoint.web.ServletEndpointRegistrar]: Factory method 'servletEndpointRegistrar' threw exception; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'auditEventsEndpoint' defined in class path resource [org/springframework/boot/actuate/autoconfigure/audit/AuditEventsEndpointAutoConfiguration.class]: Unsatisfied dependency expressed through method 'auditEventsEndpoint' parameter 0; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'customAuditEventRepository' defined in URL [jar:file:/C:/work/workspaceAngular/puantaj-hesaplama/target/puantaj-hesaplama-0.0.1-SNAPSHOT.war!/WEB-INF/classes!/com/sbb/puantajhesaplama/repository/CustomAuditEventRepository.class]: Unsatisfied dependency expressed through constructor parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'persistenceAuditEventRepository': Cannot create inner bean '(inner bean)#aa22f1c' of type [org.springframework.orm.jpa.SharedEntityManagerCreator] while setting bean property 'entityManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name '(inner bean)#aa22f1c': Cannot resolve reference to bean 'entityManagerFactory' while setting constructor argument; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'liquibase' defined in class path resource [com/sbb/puantajhesaplama/config/LiquibaseConfiguration.class]: Invocation of init method failed; nested exception is java.lang.NullPointerException

Ответы [ 2 ]

0 голосов
/ 29 марта 2019

У вас проблема в CustomAuditEventRepository этом классе

Поделитесь своим кодом с gist.github.com

0 голосов
/ 29 марта 2019

Если вы хотите запустить его с java -jar, вы должны создать JAR, а не WAR.

Так что в вашем pom.xml

<packaging>jar</packaging>
...