Failed to start hapi-fhir server with R5 version.

243 views
Skip to first unread message

김주영

unread,
Aug 1, 2023, 8:43:41 PM8/1/23
to HAPI FHIR
Hi,

I tried to run hapi-fhir server with docker image: hapiproject/hapi:latest.

below is the docker compose setting:

  hapi-fhir-server-r5:
    image: hapiproject/hapi:latest
    container_name: hapi-fhir-server-r5
    ports:
      - 8080:8080
    environment:
      - hapi.fhir.fhir_version=R5


But I met below warning:

Warning!

Failed to load conformance statement, error was: ca.uhn.fhir.rest.client.exceptions.FhirClientConnectionException: HAPI-1359: Failed to parse response from server when performing GET to URL http://localhost:8080/fhir/metadata - ca.uhn.fhir.parser.DataFormatException: HAPI-1821: [element="fhirVersion"] Invalid attribute value "5.0.0-snapshot1": Unknown FHIRVersion code '5.0.0-snapshot1'


Of cource, If I set "hapi.fhir.fhir_version=R4", it works very fine.

Do I need more additional settings or else?

Sushant Patil

unread,
Sep 10, 2023, 11:14:01 AM9/10/23
to HAPI FHIR
Hello All 
Any solution for this ..?

Preston Lee

unread,
Oct 6, 2023, 11:10:50 AM10/6/23
to HAPI FHIR
I'm getting a different Spring runtime exception, but note that recent Docker builds (specifically v6.6.0 and v6.8.0) don't seem to want to start due to a missing bean definition: https://github.com/hapifhir/hapi-fhir-jpaserver-starter/issues/591

I'm using v6.4.4 for now.

Preston

Preston Lee

unread,
Apr 11, 2024, 11:59:32 AMApr 11
to HAPI FHIR
This was resolved with 6.10, but appears to fail to start again in v7.0.3 every time.


docker run -it --rm -p 8080:8080 -e hapi.fhir.fhir_version=R5 hapiproject/hapi:v7.0.3

Unable to find image 'hapiproject/hapi:v7.0.3' locally

v7.0.3: Pulling from hapiproject/hapi

Digest: sha256:73ff82fec42e5cbb7e66338d47af09ba91c140e98beeaee41a5459572d5ae1ce

Status: Downloaded newer image for hapiproject/hapi:v7.0.3


  .   ____          _            __ _ _

 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \

( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \

 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )

  '  |____| .__|_| |_|_| |_\__, | / / / /

 =========|_|==============|___/=/_/_/_/

 :: Spring Boot ::                (v3.2.0)


2024-04-05 23:27:08.778 [background-preinit] INFO  o.h.validator.internal.util.Version [Version.java:21] HV000001: Hibernate Validator 8.0.0.Final

2024-04-05 23:27:08.843 [main] INFO  ca.uhn.fhir.jpa.starter.Application [StartupInfoLogger.java:50] Starting Application using Java 17.0.10 with PID 1 (/app/main.war started by nonroot in /app)

2024-04-05 23:27:08.843 [main] INFO  ca.uhn.fhir.jpa.starter.Application [SpringApplication.java:653] No active profile set, falling back to 1 default profile: "default"

2024-04-05 23:27:09.513 [main] INFO  o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:139] Bootstrapping Spring Data JPA repositories in DEFAULT mode.

2024-04-05 23:27:09.648 [main] INFO  o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:208] Finished Spring Data repository scanning in 125 ms. Found 53 JPA repository interfaces.

2024-04-05 23:27:09.669 [main] WARN  o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [AbstractApplicationContext.java:632] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.support.BeanDefinitionOverrideException: Invalid bean definition with name 'subscriptionQueryValidator' defined in ca.uhn.fhir.jpa.subscription.submit.config.SubscriptionSubmitterConfig: Cannot register bean definition [Root bean: class [null]; scope=; abstract=false; lazyInit=null; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=ca.uhn.fhir.jpa.subscription.submit.config.SubscriptionSubmitterConfig; factoryMethodName=subscriptionQueryValidator; initMethodNames=null; destroyMethodNames=[(inferred)]; defined in ca.uhn.fhir.jpa.subscription.submit.config.SubscriptionSubmitterConfig] for bean 'subscriptionQueryValidator' since there is already [Root bean: class [null]; scope=; abstract=false; lazyInit=true; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=ca.uhn.fhir.jpa.topic.SubscriptionTopicConfig; factoryMethodName=subscriptionQueryValidator; initMethodNames=null; destroyMethodNames=[(inferred)]; defined in class path resource [ca/uhn/fhir/jpa/topic/SubscriptionTopicConfig.class]] bound.

2024-04-05 23:27:09.677 [main] INFO  o.s.b.a.l.ConditionEvaluationReportLogger [ConditionEvaluationReportLogger.java:82] 


Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.

2024-04-05 23:27:09.693 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter [LoggingFailureAnalysisReporter.java:40] 


***************************

APPLICATION FAILED TO START

***************************


Description:


The bean 'subscriptionQueryValidator', defined in ca.uhn.fhir.jpa.subscription.submit.config.SubscriptionSubmitterConfig, could not be registered. A bean with that name has already been defined in class path resource [ca/uhn/fhir/jpa/topic/SubscriptionTopicConfig.class] and overriding is disabled.


Action:


Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=true


Stuart McGrigor

unread,
Jun 17, 2024, 1:39:12 AMJun 17
to HAPI FHIR
...a quick check of src/main/resources/application.yaml shows a suitable (commented out) config setting:

spring:
  main:
    allow-circular-references: true
    #allow-bean-definition-overriding: true

Martín Neu

unread,
Jun 17, 2024, 12:03:36 PMJun 17
to Stuart McGrigor, HAPI FHIR
Hi Stuart,

Thanks for your answer; I tried but it didn't work.

This is my application.yaml file:

server:
port: 8080
management:
endpoints:
web:
exposure:
include: "health,prometheus"
spring:
main:
allow-circular-references: true
#allow-bean-definition-overriding: true
flyway:
enabled: false
baselineOnMigrate: true
fail-on-missing-locations: false
datasource:
url: jdbc:postgresql://192.168.16.2:5432/hapi
username: postgres
password: password
driver-class-name: org.postgresql.Driver
# database connection pool size
hikari:
maximum-pool-size: 10
jpa:
properties:
hibernate.format_sql: false
hibernate.show_sql: false

hibernate.dialect: ca.uhn.fhir.jpa.model.dialect.HapiFhirPostgres94Dialect
hibernate.search.enabled: true
hapi:
fhir:
indexer:
lucene:
sync-writes: true
cr:
enabled: false

reindex_enabled: true

cdshooks:
enabled: true
clientIdHeaderName: client_id

openapi_enabled: true
fhir_version: R5

ig_runtime_upload_enabled: false
advanced_lucene_indexing: false
bulk_export_enabled: false
bulk_import_enabled: false
narrative_enabled: false
mdm_enabled: false
mdm_rules_json_location: "mdm-rules.json"

logical_urls:

cors:
allow_Credentials: true
allowed_origin:
- '*'

search-coord-core-pool-size: 20
search-coord-max-pool-size: 100
search-coord-queue-capacity: 200
tester:
home:
name: Local Tester
server_address: 'http://localhost:8080/fhir'
refuse_to_fetch_third_party_urls: false
fhir_version: R5

inline_resource_storage_below_size: 4000


And this is the error log:

hapi-fhir  | 2024-06-17 16:00:11.117 [main] ERROR o.s.b.w.e.tomcat.TomcatStarter [TomcatStarter.java:60] Error starting Tomcat context. Exception: org.springframework.beans.factory.UnsatisfiedDependencyException. Message: Error creating bean with name 'hapiServletRegistration' defined in ca.uhn.fhir.jpa.starter.Application: Unsatisfied dependency expressed through method 'hapiServletRegistration' parameter 0: Error creating bean with name 'restfulServer' defined in class path resource [ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.class]: Unsatisfied dependency expressed through method 'restfulServer' parameter 0: Error creating bean with name 'mySystemDaoR5': Unsatisfied dependency expressed through field 'mySearchParamRegistry': Error creating bean with name 'searchParamRegistry': Unsatisfied dependency expressed through field 'myResourceChangeListenerRegistry': Error creating bean with name 'resourceChangeListenerRegistry' defined in class path resource [ca/uhn/fhir/jpa/searchparam/config/SearchParamConfig.class]: Unsatisfied dependency expressed through method 'resourceChangeListenerRegistry' parameter 2: Error creating bean with name 'inMemoryResourceMatcher': Unsatisfied dependency expressed through field 'mySearchParamExtractorService': Error creating bean with name 'searchParamExtractorService': Unsatisfied dependency expressed through field 'mySearchParamExtractor': Error creating bean with name 'searchParamExtractor': Invocation of init method failed
hapi-fhir  | 2024-06-17 16:00:11.145 [main] INFO  o.a.catalina.core.StandardService [DirectJDKLog.java:173] Stopping service [Tomcat]
hapi-fhir  | 2024-06-17 16:00:11.148 [main] WARN  o.a.c.loader.WebappClassLoaderBase [DirectJDKLog.java:173] The web application [ROOT] appears to have started a thread named [HikariPool-1 housekeeper] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
hapi-fhir  |  java...@17.0.11/jdk.internal.misc.Unsafe.park(Native Method)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1674)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
hapi-fhir  |  java...@17.0.11/java.lang.Thread.run(Thread.java:840)
hapi-fhir  | 2024-06-17 16:00:11.152 [main] WARN  o.a.c.loader.WebappClassLoaderBase [DirectJDKLog.java:173] The web application [ROOT] appears to have started a thread named [Hibernate Search - Engine - Timing thread - 0] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
hapi-fhir  |  java...@17.0.11/jdk.internal.misc.Unsafe.park(Native Method)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1674)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
hapi-fhir  |  java...@17.0.11/java.lang.Thread.run(Thread.java:840)
hapi-fhir  | 2024-06-17 16:00:11.152 [main] WARN  o.a.c.loader.WebappClassLoaderBase [DirectJDKLog.java:173] The web application [ROOT] appears to have started a thread named [Hibernate Search - default backend - Worker thread - 0] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
hapi-fhir  |  java...@17.0.11/jdk.internal.misc.Unsafe.park(Native Method)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1625)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1170)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
hapi-fhir  |  java...@17.0.11/java.lang.Thread.run(Thread.java:840)
hapi-fhir  | 2024-06-17 16:00:11.152 [main] WARN  o.a.c.loader.WebappClassLoaderBase [DirectJDKLog.java:173] The web application [ROOT] appears to have started a thread named [Hibernate Search - default backend - Worker thread - 1] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
hapi-fhir  |  java...@17.0.11/jdk.internal.misc.Unsafe.park(Native Method)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1625)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1170)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122)
hapi-fhir  |  java...@17.0.11/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
hapi-fhir  |  java...@17.0.11/java.lang.Thread.run(Thread.java:840)
hapi-fhir  | 2024-06-17 16:00:11.156 [main] WARN  o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [AbstractApplicationContext.java:632] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Unable to start web server
hapi-fhir  | 2024-06-17 16:00:11.157 [main] INFO  c.u.f.j.c.HapiFhirLocalContainerEntityManagerFactoryBean [AbstractEntityManagerFactoryBean.java:650] Closing JPA EntityManagerFactory for persistence unit 'HAPI_PU'
hapi-fhir  | 2024-06-17 16:00:11.166 [main] INFO  com.zaxxer.hikari.HikariDataSource [HikariDataSource.java:350] HikariPool-1 - Shutdown initiated...
hapi-fhir  | 2024-06-17 16:00:11.172 [main] INFO  com.zaxxer.hikari.HikariDataSource [HikariDataSource.java:352] HikariPool-1 - Shutdown completed.
hapi-fhir  | 2024-06-17 16:00:11.192 [main] INFO  o.s.b.a.l.ConditionEvaluationReportLogger [ConditionEvaluationReportLogger.java:82]
hapi-fhir  |
hapi-fhir  | Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.
hapi-fhir  | 2024-06-17 16:00:11.212 [main] ERROR o.s.boot.SpringApplication [SpringApplication.java:839] Application run failed
hapi-fhir  | org.springframework.context.ApplicationContextException: Unable to start web server
hapi-fhir  | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:165)
hapi-fhir  | at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618)
hapi-fhir  | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
hapi-fhir  | at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:753)
hapi-fhir  | at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:455)
hapi-fhir  | at org.springframework.boot.SpringApplication.run(SpringApplication.java:323)
hapi-fhir  | at org.springframework.boot.SpringApplication.run(SpringApplication.java:1342)
hapi-fhir  | at org.springframework.boot.SpringApplication.run(SpringApplication.java:1331)
hapi-fhir  | at ca.uhn.fhir.jpa.starter.Application.main(Application.java:46)
hapi-fhir  | at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
hapi-fhir  | at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
hapi-fhir  | at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
hapi-fhir  | at java.base/java.lang.reflect.Method.invoke(Method.java:568)
hapi-fhir  | at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:49)
hapi-fhir  | at org.springframework.boot.loader.Launcher.launch(Launcher.java:95)
hapi-fhir  | at org.springframework.boot.loader.Launcher.launch(Launcher.java:58)
hapi-fhir  | at org.springframework.boot.loader.PropertiesLauncher.main(PropertiesLauncher.java:466)
hapi-fhir  | Caused by: org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat
hapi-fhir  | at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:142)
hapi-fhir  | at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.<init>(TomcatWebServer.java:104)
hapi-fhir  | at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getTomcatWebServer(TomcatServletWebServerFactory.java:501)
hapi-fhir  | at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:218)
hapi-fhir  | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188)
hapi-fhir  | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
hapi-fhir  | ... 16 common frames omitted
hapi-fhir  | Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'hapiServletRegistration' defined in ca.uhn.fhir.jpa.starter.Application: Unsatisfied dependency expressed through method 'hapiServletRegistration' parameter 0: Error creating bean with name 'restfulServer' defined in class path resource [ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.class]: Unsatisfied dependency expressed through method 'restfulServer' parameter 0: Error creating bean with name 'mySystemDaoR5': Unsatisfied dependency expressed through field 'mySearchParamRegistry': Error creating bean with name 'searchParamRegistry': Unsatisfied dependency expressed through field 'myResourceChangeListenerRegistry': Error creating bean with name 'resourceChangeListenerRegistry' defined in class path resource [ca/uhn/fhir/jpa/searchparam/config/SearchParamConfig.class]: Unsatisfied dependency expressed through method 'resourceChangeListenerRegistry' parameter 2: Error creating bean with name 'inMemoryResourceMatcher': Unsatisfied dependency expressed through field 'mySearchParamExtractorService': Error creating bean with name 'searchParamExtractorService': Unsatisfied dependency expressed through field 'mySearchParamExtractor': Error creating bean with name 'searchParamExtractor': Invocation of init method failed
hapi-fhir  | at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:795)
hapi-fhir  | at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1335)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1165)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205)
hapi-fhir  | at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:210)
hapi-fhir  | at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:201)
hapi-fhir  | at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addServletContextInitializerBeans(ServletContextInitializerBeans.java:96)
hapi-fhir  | at org.springframework.boot.web.servlet.ServletContextInitializerBeans.<init>(ServletContextInitializerBeans.java:85)
hapi-fhir  | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getServletContextInitializerBeans(ServletWebServerApplicationContext.java:266)
hapi-fhir  | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.selfInitialize(ServletWebServerApplicationContext.java:240)
hapi-fhir  | at org.springframework.boot.web.embedded.tomcat.TomcatStarter.onStartup(TomcatStarter.java:52)
hapi-fhir  | at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:4850)
hapi-fhir  | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
hapi-fhir  | at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1332)
hapi-fhir  | at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1322)
hapi-fhir  | at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
hapi-fhir  | at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
hapi-fhir  | at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
hapi-fhir  | at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:866)
hapi-fhir  | at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:845)
hapi-fhir  | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
hapi-fhir  | at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1332)
hapi-fhir  | at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1322)
hapi-fhir  | at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
hapi-fhir  | at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
hapi-fhir  | at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
hapi-fhir  | at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:866)
hapi-fhir  | at org.apache.catalina.core.StandardEngine.startInternal(StandardEngine.java:240)
hapi-fhir  | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
hapi-fhir  | at org.apache.catalina.core.StandardService.startInternal(StandardService.java:433)
hapi-fhir  | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
hapi-fhir  | at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:917)
hapi-fhir  | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:171)
hapi-fhir  | at org.apache.catalina.startup.Tomcat.start(Tomcat.java:488)
hapi-fhir  | at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:123)
hapi-fhir  | ... 21 common frames omitted
hapi-fhir  | Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'restfulServer' defined in class path resource [ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.class]: Unsatisfied dependency expressed through method 'restfulServer' parameter 0: Error creating bean with name 'mySystemDaoR5': Unsatisfied dependency expressed through field 'mySearchParamRegistry': Error creating bean with name 'searchParamRegistry': Unsatisfied dependency expressed through field 'myResourceChangeListenerRegistry': Error creating bean with name 'resourceChangeListenerRegistry' defined in class path resource [ca/uhn/fhir/jpa/searchparam/config/SearchParamConfig.class]: Unsatisfied dependency expressed through method 'resourceChangeListenerRegistry' parameter 2: Error creating bean with name 'inMemoryResourceMatcher': Unsatisfied dependency expressed through field 'mySearchParamExtractorService': Error creating bean with name 'searchParamExtractorService': Unsatisfied dependency expressed through field 'mySearchParamExtractor': Error creating bean with name 'searchParamExtractor': Invocation of init method failed
hapi-fhir  | at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:795)
hapi-fhir  | at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1335)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1165)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
hapi-fhir  | at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
hapi-fhir  | at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
hapi-fhir  | at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
hapi-fhir  | ... 61 common frames omitted
hapi-fhir  | Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'mySystemDaoR5': Unsatisfied dependency expressed through field 'mySearchParamRegistry': Error creating bean with name 'searchParamRegistry': Unsatisfied dependency expressed through field 'myResourceChangeListenerRegistry': Error creating bean with name 'resourceChangeListenerRegistry' defined in class path resource [ca/uhn/fhir/jpa/searchparam/config/SearchParamConfig.class]: Unsatisfied dependency expressed through method 'resourceChangeListenerRegistry' parameter 2: Error creating bean with name 'inMemoryResourceMatcher': Unsatisfied dependency expressed through field 'mySearchParamExtractorService': Error creating bean with name 'searchParamExtractorService': Unsatisfied dependency expressed through field 'mySearchParamExtractor': Error creating bean with name 'searchParamExtractor': Invocation of init method failed
hapi-fhir  | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787)
hapi-fhir  | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767)
hapi-fhir  | at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
hapi-fhir  | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1419)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
hapi-fhir  | at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
hapi-fhir  | at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
hapi-fhir  | at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
hapi-fhir  | ... 75 common frames omitted
hapi-fhir  | Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'searchParamRegistry': Unsatisfied dependency expressed through field 'myResourceChangeListenerRegistry': Error creating bean with name 'resourceChangeListenerRegistry' defined in class path resource [ca/uhn/fhir/jpa/searchparam/config/SearchParamConfig.class]: Unsatisfied dependency expressed through method 'resourceChangeListenerRegistry' parameter 2: Error creating bean with name 'inMemoryResourceMatcher': Unsatisfied dependency expressed through field 'mySearchParamExtractorService': Error creating bean with name 'searchParamExtractorService': Unsatisfied dependency expressed through field 'mySearchParamExtractor': Error creating bean with name 'searchParamExtractor': Invocation of init method failed
hapi-fhir  | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787)
hapi-fhir  | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767)
hapi-fhir  | at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
hapi-fhir  | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1419)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
hapi-fhir  | at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
hapi-fhir  | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784)
hapi-fhir  | ... 90 common frames omitted
hapi-fhir  | Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'resourceChangeListenerRegistry' defined in class path resource [ca/uhn/fhir/jpa/searchparam/config/SearchParamConfig.class]: Unsatisfied dependency expressed through method 'resourceChangeListenerRegistry' parameter 2: Error creating bean with name 'inMemoryResourceMatcher': Unsatisfied dependency expressed through field 'mySearchParamExtractorService': Error creating bean with name 'searchParamExtractorService': Unsatisfied dependency expressed through field 'mySearchParamExtractor': Error creating bean with name 'searchParamExtractor': Invocation of init method failed
hapi-fhir  | at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:795)
hapi-fhir  | at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1335)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1165)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
hapi-fhir  | at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
hapi-fhir  | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784)
hapi-fhir  | ... 104 common frames omitted
hapi-fhir  | Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'inMemoryResourceMatcher': Unsatisfied dependency expressed through field 'mySearchParamExtractorService': Error creating bean with name 'searchParamExtractorService': Unsatisfied dependency expressed through field 'mySearchParamExtractor': Error creating bean with name 'searchParamExtractor': Invocation of init method failed
hapi-fhir  | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787)
hapi-fhir  | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767)
hapi-fhir  | at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
hapi-fhir  | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1419)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
hapi-fhir  | at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
hapi-fhir  | at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904)
hapi-fhir  | at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782)
hapi-fhir  | ... 117 common frames omitted
hapi-fhir  | Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'searchParamExtractorService': Unsatisfied dependency expressed through field 'mySearchParamExtractor': Error creating bean with name 'searchParamExtractor': Invocation of init method failed
hapi-fhir  | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787)
hapi-fhir  | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767)
hapi-fhir  | at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145)
hapi-fhir  | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1419)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
hapi-fhir  | at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
hapi-fhir  | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784)
hapi-fhir  | ... 132 common frames omitted
hapi-fhir  | Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'searchParamExtractor': Invocation of init method failed
hapi-fhir  | at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:222)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:422)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1778)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
hapi-fhir  | at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
hapi-fhir  | at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784)
hapi-fhir  | ... 146 common frames omitted
hapi-fhir  | Caused by: ca.uhn.fhir.rest.server.exceptions.InternalErrorException: HAPI-2330: null
hapi-fhir  | at ca.uhn.fhir.util.ReflectionUtil.newInstance(ReflectionUtil.java:281)
hapi-fhir  | at ca.uhn.fhir.context.support.DefaultProfileValidationSupport.<init>(DefaultProfileValidationSupport.java:81)
hapi-fhir  | at ca.uhn.fhir.context.FhirContext.getValidationSupport(FhirContext.java:706)
hapi-fhir  | at ca.uhn.fhir.jpa.searchparam.extractor.SearchParamExtractorR5.initFhirPath(SearchParamExtractorR5.java:85)
hapi-fhir  | at ca.uhn.fhir.jpa.searchparam.extractor.SearchParamExtractorR5.start(SearchParamExtractorR5.java:80)
hapi-fhir  | at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
hapi-fhir  | at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
hapi-fhir  | at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
hapi-fhir  | at java.base/java.lang.reflect.Method.invoke(Method.java:568)
hapi-fhir  | at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMethod.invoke(InitDestroyAnnotationBeanPostProcessor.java:457)
hapi-fhir  | at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:401)
hapi-fhir  | at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:219)
hapi-fhir  | ... 158 common frames omitted
hapi-fhir  | Caused by: java.lang.reflect.InvocationTargetException: null
hapi-fhir  | at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
hapi-fhir  | at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
hapi-fhir  | at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
hapi-fhir  | at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
hapi-fhir  | at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
hapi-fhir  | at ca.uhn.fhir.util.ReflectionUtil.newInstance(ReflectionUtil.java:275)
hapi-fhir  | ... 169 common frames omitted
hapi-fhir  | Caused by: java.lang.OutOfMemoryError: Java heap space
hapi-fhir  | at java.base/java.lang.String.<init>(String.java:568)
hapi-fhir  | at java.base/java.lang.String.<init>(String.java:1387)
hapi-fhir  | at org.hl7.fhir.common.hapi.validation.support.NpmPackageValidationSupport.loadResourcesFromPackage(NpmPackageValidationSupport.java:55)
hapi-fhir  | at org.hl7.fhir.common.hapi.validation.support.NpmPackageValidationSupport.loadPackageFromClasspath(NpmPackageValidationSupport.java:44)
hapi-fhir  | at org.hl7.fhir.common.hapi.validation.support.DefaultProfileValidationSupportNpmStrategy.<init>(DefaultProfileValidationSupportNpmStrategy.java:32)
hapi-fhir  | at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
hapi-fhir  | at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
hapi-fhir  | at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
hapi-fhir  | at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
hapi-fhir  | at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
hapi-fhir  | at ca.uhn.fhir.util.ReflectionUtil.newInstance(ReflectionUtil.java:275)
hapi-fhir  | at ca.uhn.fhir.context.support.DefaultProfileValidationSupport.<init>(DefaultProfileValidationSupport.java:81)
hapi-fhir  | at ca.uhn.fhir.context.FhirContext.getValidationSupport(FhirContext.java:706)
hapi-fhir  | at ca.uhn.fhir.jpa.searchparam.extractor.SearchParamExtractorR5.initFhirPath(SearchParamExtractorR5.java:85)
hapi-fhir  | at ca.uhn.fhir.jpa.searchparam.extractor.SearchParamExtractorR5.start(SearchParamExtractorR5.java:80)
hapi-fhir  | at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
hapi-fhir  | at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
hapi-fhir  | at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
hapi-fhir  | at java.base/java.lang.reflect.Method.invoke(Method.java:568)
hapi-fhir  | at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMethod.invoke(InitDestroyAnnotationBeanPostProcessor.java:457)
hapi-fhir  | at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:401)
hapi-fhir  | at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:219)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:422)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1778)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory$$Lambda$343/0x000000280120cd90.getObject(Unknown Source)
hapi-fhir  | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
hapi-fhir  | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
hapi-fhir  | at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
hapi-fhir exited with code 1



--
You received this message because you are subscribed to the Google Groups "HAPI FHIR" group.
To unsubscribe from this group and stop receiving emails from it, send an email to hapi-fhir+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/hapi-fhir/1b7e6094-f39e-491e-b964-95abae1b4a8en%40googlegroups.com.
Reply all
Reply to author
Forward
0 new messages