Hi,
docker-compose.yaml
version: "3"
services:
hapi-fhir-jpaserver-start:
build: .
container_name: hapi-fhir-jpaserver-start
restart: on-failure
ports:
- "8080:8080"
hapi-fhir-sql-server-db:
container_name: sql-server-db
ports:
- "1433:1433"
environment:
ACCEPT_EULA: Y
MSSQL_SA_PASSWORD: Hapi_Fhir_User1
MSSQL_PID: Developer
volumes:
- hapi-fhir-sql-server-db:/var/lib/mssql/data
volumes:
hapi-fhir-sql-server-db:
And application.yaml I replaced the datasource to
datasource:
url: 'jdbc:sqlserver://localhost:1433;databaseName=HapiFhir'
username: sa
password: Hapi_Fhir_User1
driverClassName: com.microsoft.sqlserver.jdbc.SQLServerDriver
Although the sql server instance is created after the jpa server has started Hapi Fhir specific tables are not created. Also no response at
http://localhost:8080/fhir
here is error log
ame 'restfulServer' defined in class path resource [ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.class]: Unsatisfied dependency expressed through method 'restfulServer' parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mySystemDaoR4': Injection of persistence dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.class]: Invocation of init method failed; nested exception is org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:800)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:541)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1352)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1195)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:887)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791)
hapi-fhir-jpaserver-start | ... 61 common frames omitted
hapi-fhir-jpaserver-start | Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mySystemDaoR4': Injection of persistence dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.class]: Invocation of init method failed; nested exception is org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.postProcessProperties(PersistenceAnnotationBeanPostProcessor.java:351)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:887)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791)
hapi-fhir-jpaserver-start | ... 75 common frames omitted
hapi-fhir-jpaserver-start | Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.class]: Invocation of init method
failed; nested exception is org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1804)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:233)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveNamedBean(DefaultListableBeanFactory.java:1284)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveNamedBean(DefaultListableBeanFactory.java:1245)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveNamedBean(DefaultListableBeanFactory.java:1213)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.findDefaultEntityManagerFactory(PersistenceAnnotationBeanPostProcessor.java:565)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.findEntityManagerFactory(PersistenceAnnotationBeanPostProcessor.java:528)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor$PersistenceElement.resolveEntityManager(PersistenceAnnotationBeanPostProcessor.java:696)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor$PersistenceElement.getResourceToInject(PersistenceAnnotationBeanPostProcessor.java:669)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119)hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.postProcessProperties(PersistenceAnnotationBeanPostProcessor.java:348)
hapi-fhir-jpaserver-start | ... 87 common frames omitted
hapi-fhir-jpaserver-start | Caused by: org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.createService(AbstractServiceRegistryImpl.java:275)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.initializeService(AbstractServiceRegistryImpl.java:237)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.getService(AbstractServiceRegistryImpl.java:214)
hapi-fhir-jpaserver-start | at org.hibernate.id.factory.internal.DefaultIdentifierGeneratorFactory.injectServices(DefaultIdentifierGeneratorFactory.java:175)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.injectDependencies(AbstractServiceRegistryImpl.java:286)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.initializeService(AbstractServiceRegistryImpl.java:243)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.getService(AbstractServiceRegistryImpl.java:214)
hapi-fhir-jpaserver-start | at org.hibernate.boot.internal.InFlightMetadataCollectorImpl.<init>(InFlightMetadataCollectorImpl.java:173)
hapi-fhir-jpaserver-start | at org.hibernate.boot.model.process.spi.MetadataBuildingProcess.complete(MetadataBuildingProcess.java:127)
hapi-fhir-jpaserver-start | at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.metadata(EntityManagerFactoryBuilderImpl.java:1460)
hapi-fhir-jpaserver-start | at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1494)
hapi-fhir-jpaserver-start | at org.hibernate.jpa.HibernatePersistenceProvider.createContainerEntityManagerFactory(HibernatePersistenceProvider.java:141)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:365)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:341)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1863)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1800)
hapi-fhir-jpaserver-start | ... 103 common frames omitted
hapi-fhir-jpaserver-start | Caused by: org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set
hapi-fhir-jpaserver-start | at org.hibernate.engine.jdbc.dialect.internal.DialectFactoryImpl.determineDialect(DialectFactoryImpl.java:100)
hapi-fhir-jpaserver-start | at org.hibernate.engine.jdbc.dialect.internal.DialectFactoryImpl.buildDialect(DialectFactoryImpl.java:54)
hapi-fhir-jpaserver-start | at org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator.initiateService(JdbcEnvironmentInitiator.java:138)
hapi-fhir-jpaserver-start | at org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator.initiateService(JdbcEnvironmentInitiator.java:35)
hapi-fhir-jpaserver-start | at org.hibernate.boot.registry.internal.StandardServiceRegistryImpl.initiateService(StandardServiceRegistryImpl.java:101)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.createService(AbstractServiceRegistryImpl.java:263)
hapi-fhir-jpaserver-start | ... 120 common frames omitted
hapi-fhir-jpaserver-start |
hapi-fhir-jpaserver-start | . ____ _ __ _ _
hapi-fhir-jpaserver-start | /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
hapi-fhir-jpaserver-start | ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
hapi-fhir-jpaserver-start | \\/ ___)| |_)| | | | | || (_| | ) ) ) )
hapi-fhir-jpaserver-start | ' |____| .__|_| |_|_| |_\__, | / / / /
hapi-fhir-jpaserver-start | =========|_|==============|___/=/_/_/_/
hapi-fhir-jpaserver-start | :: Spring Boot :: (v2.7.4)
hapi-fhir-jpaserver-start |
hapi-fhir-jpaserver-start | 2022-12-26 16:36:22.704 [background-preinit] INFO o.h.validator.internal.util.Version [Version.java:21] HV000001: Hibernate Validator 6.1.5.Final
hapi-fhir-jpaserver-start | 2022-12-26 16:36:23.206 [main] INFO ca.uhn.fhir.jpa.starter.Application [StartupInfoLogger.java:55] Starting Application using Java 17.0.4 on c4f36e470814 with PID 1 (/app/main.war started by nonroot in /app)
hapi-fhir-jpaserver-start | 2022-12-26 16:36:23.215 [main] INFO ca.uhn.fhir.jpa.starter.Application [SpringApplication.java:634] No active profile set, falling back to 1 default profile: "default"
hapi-fhir-jpaserver-start | 2022-12-26 16:36:27.276 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:132] Bootstrapping Spring Data JPA repositories in DEFAULT mode.
hapi-fhir-jpaserver-start | 2022-12-26 16:36:27.885 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:201] Finished Spring Data repository scanning in 589 ms. Found 53 JPA repository interfaces.
hapi-fhir-jpaserver-start | 2022-12-26 16:36:30.571 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:376] Bean 'ca.uhn.fhir.jpa.config.BeanPostProcessorConfig' of type [ca.uhn.fhir.jpa.config.BeanPostProcessorConfig$$EnhancerBySpringCGLIB$$f969808b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
hapi-fhir-jpaserver-start | 2022-12-26 16:36:31.520 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http)
hapi-fhir-jpaserver-start | 2022-12-26 16:36:31.540 [main] INFO o.a.coyote.http11.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"]
hapi-fhir-jpaserver-start | 2022-12-26 16:36:31.541 [main] INFO o.a.catalina.core.StandardService [DirectJDKLog.java:173] Starting service [Tomcat]
hapi-fhir-jpaserver-start | 2022-12-26 16:36:31.542 [main] INFO o.a.catalina.core.StandardEngine [DirectJDKLog.java:173] Starting
Servlet engine: [Apache Tomcat/9.0.65]
hapi-fhir-jpaserver-start | 2022-12-26 16:36:38.698 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext
hapi-fhir-jpaserver-start | 2022-12-26 16:36:38.699 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:292] Root WebApplicationContext: initialization completed in 15134 ms
hapi-fhir-jpaserver-start | 2022-12-26 16:36:38.864 [main] INFO ca.uhn.fhir.util.VersionUtil [VersionUtil.java:84] HAPI FHIR version 6.2.2 - Rev 7b5d303f36
hapi-fhir-jpaserver-start | 2022-12-26 16:36:38.871 [main] INFO ca.uhn.fhir.context.FhirContext [FhirContext.java:210] Creating new FHIR context for FHIR version [R4]
hapi-fhir-jpaserver-start | 2022-12-26 16:36:39.035 [main] INFO o.h.jpa.internal.util.LogHelper [LogHelper.java:31] HHH000204: Processing PersistenceUnitInfo [name: HAPI_PU]
hapi-fhir-jpaserver-start | 2022-12-26 16:36:39.260 [main] INFO org.hibernate.Version [Version.java:44] HHH000412: Hibernate ORM core version 5.6.12.Final
hapi-fhir-jpaserver-start | 2022-12-26 16:36:39.943 [main] INFO o.h.annotations.common.Version [JavaReflectionManager.java:56] HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
hapi-fhir-jpaserver-start | 2022-12-26 16:36:40.280 [main] INFO com.zaxxer.hikari.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting...
hapi-fhir-jpaserver-start | 2022-12-26 16:37:12.064 [main] ERROR com.zaxxer.hikari.pool.HikariPool [HikariPool.java:594] HikariPool-1 - Exception during pool initialization.
hapi-fhir-jpaserver-start | com.microsoft.sqlserver.jdbc.SQLServerException: The TCP/IP connection to the host ei-inf-sql5d, port 1433 has failed. Error: "ei-inf-sql5d: Temporary failure in name resolution. Verify the connection properties. Make sure that an instance of SQL Server is running on the host and accepting TCP/IP connections at the port. Make sure that TCP connections to the port are not blocked by a firewall.".
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDriverError(SQLServerException.java:237)
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.SQLServerException.ConvertConnectExceptionToSQLServerException(SQLServerException.java:288)
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.SocketFinder.findSocket(IOBuffer.java:2466)
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.TDSChannel.open(IOBuffer.java:676)
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.SQLServerConnection.connectHelper(SQLServerConnection.java:2957)
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.SQLServerConnection.login(SQLServerConnection.java:2628)
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.SQLServerConnection.connectInternal(SQLServerConnection.java:2471)
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.SQLServerConnection.connect(SQLServerConnection.java:1470)
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.SQLServerDriver.connect(SQLServerDriver.java:915)
hapi-fhir-jpaserver-start | at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
hapi-fhir-jpaserver-start | at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:359)
hapi-fhir-jpaserver-start | at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:201)
hapi-fhir-jpaserver-start | at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:470)
hapi-fhir-jpaserver-start | at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:561)
hapi-fhir-jpaserver-start | at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:100)
hapi-fhir-jpaserver-start | at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112)
hapi-fhir-jpaserver-start | at org.hibernate.engine.jdbc.connections.internal.DatasourceConnectionProviderImpl.getConnection(DatasourceConnectionProviderImpl.java:122)
hapi-fhir-jpaserver-start | at org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess.obtainConnection(JdbcEnvironmentInitiator.java:181)
hapi-fhir-jpaserver-start | at org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator.initiateService(JdbcEnvironmentInitiator.java:68)
hapi-fhir-jpaserver-start | at org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator.initiateService(JdbcEnvironmentInitiator.java:35)
hapi-fhir-jpaserver-start | at org.hibernate.boot.registry.internal.StandardServiceRegistryImpl.initiateService(StandardServiceRegistryImpl.java:101)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.createService(AbstractServiceRegistryImpl.java:263)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.initializeService(AbstractServiceRegistryImpl.java:237)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.getService(AbstractServiceRegistryImpl.java:214)
hapi-fhir-jpaserver-start | at org.hibernate.id.factory.internal.DefaultIdentifierGeneratorFactory.injectServices(DefaultIdentifierGeneratorFactory.java:175)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.injectDependencies(AbstractServiceRegistryImpl.java:286)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.initializeService(AbstractServiceRegistryImpl.java:243)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.getService(AbstractServiceRegistryImpl.java:214)
hapi-fhir-jpaserver-start | at org.hibernate.boot.internal.InFlightMetadataCollectorImpl.<init>(InFlightMetadataCollectorImpl.java:173)
hapi-fhir-jpaserver-start | at org.hibernate.boot.model.process.spi.MetadataBuildingProcess.complete(MetadataBuildingProcess.java:127)
hapi-fhir-jpaserver-start | at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.metadata(EntityManagerFactoryBuilderImpl.java:1460)
hapi-fhir-jpaserver-start | at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1494)
hapi-fhir-jpaserver-start | at org.hibernate.jpa.HibernatePersistenceProvider.createContainerEntityManagerFactory(HibernatePersistenceProvider.java:141)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:365)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:341)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1863)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1800)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:233)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveNamedBean(DefaultListableBeanFactory.java:1284)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveNamedBean(DefaultListableBeanFactory.java:1245)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveNamedBean(DefaultListableBeanFactory.java:1213)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.findDefaultEntityManagerFactory(PersistenceAnnotationBeanPostProcessor.java:565)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.findEntityManagerFactory(PersistenceAnnotationBeanPostProcessor.java:528)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor$PersistenceElement.resolveEntityManager(PersistenceAnnotationBeanPostProcessor.java:696)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor$PersistenceElement.getResourceToInject(PersistenceAnnotationBeanPostProcessor.java:669)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119)hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.postProcessProperties(PersistenceAnnotationBeanPostProcessor.java:348)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:887)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:541)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1352)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1195)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:887)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:541)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1352)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1195)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:213)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:212)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:203)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addServletContextInitializerBeans(ServletContextInitializerBeans.java:97)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.ServletContextInitializerBeans.<init>(ServletContextInitializerBeans.java:86)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getServletContextInitializerBeans(ServletWebServerApplicationContext.java:262)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.selfInitialize(ServletWebServerApplicationContext.java:236)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.embedded.tomcat.TomcatStarter.onStartup(TomcatStarter.java:53)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5219)
hapi-fhir-jpaserver-start | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1396)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1386)
hapi-fhir-jpaserver-start | at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
hapi-fhir-jpaserver-start | at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
hapi-fhir-jpaserver-start | at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:919)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:835)
hapi-fhir-jpaserver-start | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1396)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1386)
hapi-fhir-jpaserver-start | at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
hapi-fhir-jpaserver-start | at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
hapi-fhir-jpaserver-start | at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:919)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.StandardEngine.startInternal(StandardEngine.java:265)
hapi-fhir-jpaserver-start | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.StandardService.startInternal(StandardService.java:432)
hapi-fhir-jpaserver-start | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:930)
hapi-fhir-jpaserver-start | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
hapi-fhir-jpaserver-start | at org.apache.catalina.startup.Tomcat.start(Tomcat.java:486)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:123)hapi-fhir-jpaserver-start | at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.<init>(TomcatWebServer.java:104)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getTomcatWebServer(TomcatServletWebServerFactory.java:479)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:211)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:184)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
hapi-fhir-jpaserver-start | at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:577)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147)
hapi-fhir-jpaserver-start | at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:734)
hapi-fhir-jpaserver-start | at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408)
hapi-fhir-jpaserver-start | at org.springframework.boot.SpringApplication.run(SpringApplication.java:308)
hapi-fhir-jpaserver-start | at org.springframework.boot.SpringApplication.run(SpringApplication.java:1306)
hapi-fhir-jpaserver-start | at org.springframework.boot.SpringApplication.run(SpringApplication.java:1295)
hapi-fhir-jpaserver-start | at ca.uhn.fhir.jpa.starter.Application.main(Application.java:43)
hapi-fhir-jpaserver-start | at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
hapi-fhir-jpaserver-start | at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
hapi-fhir-jpaserver-start | at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
hapi-fhir-jpaserver-start | at java.base/java.lang.reflect.Method.invoke(Method.java:568)
hapi-fhir-jpaserver-start | at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:49)
hapi-fhir-jpaserver-start | at org.springframework.boot.loader.Launcher.launch(Launcher.java:108)
hapi-fhir-jpaserver-start | at org.springframework.boot.loader.Launcher.launch(Launcher.java:58)
hapi-fhir-jpaserver-start | at org.springframework.boot.loader.WarLauncher.main(WarLauncher.java:59)
hapi-fhir-jpaserver-start | 2022-12-26 16:37:12.065 [main] WARN o.h.e.j.e.i.JdbcEnvironmentInitiator [JdbcEnvironmentInitiator.java:133] HHH000342: Could not obtain connection to query metadata
hapi-fhir-jpaserver-start | com.microsoft.sqlserver.jdbc.SQLServerException: The TCP/IP connection to the host ei-inf-sql5d, port 1433 has failed. Error: "ei-inf-sql5d: Temporary failure in name resolution. Verify the connection properties. Make sure that an instance of SQL Server is running on the host and accepting TCP/IP connections at the port. Make sure that TCP connections to the port are not blocked by a firewall.".
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDriverError(SQLServerException.java:237)
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.SQLServerException.ConvertConnectExceptionToSQLServerException(SQLServerException.java:288)
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.SocketFinder.findSocket(IOBuffer.java:2466)
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.TDSChannel.open(IOBuffer.java:676)
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.SQLServerConnection.connectHelper(SQLServerConnection.java:2957)
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.SQLServerConnection.login(SQLServerConnection.java:2628)
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.SQLServerConnection.connectInternal(SQLServerConnection.java:2471)
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.SQLServerConnection.connect(SQLServerConnection.java:1470)
hapi-fhir-jpaserver-start | at com.microsoft.sqlserver.jdbc.SQLServerDriver.connect(SQLServerDriver.java:915)
hapi-fhir-jpaserver-start | at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
hapi-fhir-jpaserver-start | at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:359)
hapi-fhir-jpaserver-start | at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:201)
hapi-fhir-jpaserver-start | at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:470)
hapi-fhir-jpaserver-start | at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:561)
hapi-fhir-jpaserver-start | at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:100)
hapi-fhir-jpaserver-start | at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112)
hapi-fhir-jpaserver-start | at org.hibernate.engine.jdbc.connections.internal.DatasourceConnectionProviderImpl.getConnection(DatasourceConnectionProviderImpl.java:122)
hapi-fhir-jpaserver-start | at org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess.obtainConnection(JdbcEnvironmentInitiator.java:181)
hapi-fhir-jpaserver-start | at org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator.initiateService(JdbcEnvironmentInitiator.java:68)
hapi-fhir-jpaserver-start | at org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator.initiateService(JdbcEnvironmentInitiator.java:35)
hapi-fhir-jpaserver-start | at org.hibernate.boot.registry.internal.StandardServiceRegistryImpl.initiateService(StandardServiceRegistryImpl.java:101)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.createService(AbstractServiceRegistryImpl.java:263)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.initializeService(AbstractServiceRegistryImpl.java:237)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.getService(AbstractServiceRegistryImpl.java:214)
hapi-fhir-jpaserver-start | at org.hibernate.id.factory.internal.DefaultIdentifierGeneratorFactory.injectServices(DefaultIdentifierGeneratorFactory.java:175)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.injectDependencies(AbstractServiceRegistryImpl.java:286)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.initializeService(AbstractServiceRegistryImpl.java:243)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.getService(AbstractServiceRegistryImpl.java:214)
hapi-fhir-jpaserver-start | at org.hibernate.boot.internal.InFlightMetadataCollectorImpl.<init>(InFlightMetadataCollectorImpl.java:173)
hapi-fhir-jpaserver-start | at org.hibernate.boot.model.process.spi.MetadataBuildingProcess.complete(MetadataBuildingProcess.java:127)
hapi-fhir-jpaserver-start | at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.metadata(EntityManagerFactoryBuilderImpl.java:1460)
hapi-fhir-jpaserver-start | at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1494)
hapi-fhir-jpaserver-start | at org.hibernate.jpa.HibernatePersistenceProvider.createContainerEntityManagerFactory(HibernatePersistenceProvider.java:141)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:365)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:341)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1863)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1800)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:233)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveNamedBean(DefaultListableBeanFactory.java:1284)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveNamedBean(DefaultListableBeanFactory.java:1245)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveNamedBean(DefaultListableBeanFactory.java:1213)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.findDefaultEntityManagerFactory(PersistenceAnnotationBeanPostProcessor.java:565)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.findEntityManagerFactory(PersistenceAnnotationBeanPostProcessor.java:528)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor$PersistenceElement.resolveEntityManager(PersistenceAnnotationBeanPostProcessor.java:696)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor$PersistenceElement.getResourceToInject(PersistenceAnnotationBeanPostProcessor.java:669)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119)hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.postProcessProperties(PersistenceAnnotationBeanPostProcessor.java:348)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:887)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:541)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1352)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1195)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:887)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:541)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1352)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1195)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:213)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:212)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:203)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addServletContextInitializerBeans(ServletContextInitializerBeans.java:97)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.ServletContextInitializerBeans.<init>(ServletContextInitializerBeans.java:86)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getServletContextInitializerBeans(ServletWebServerApplicationContext.java:262)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.selfInitialize(ServletWebServerApplicationContext.java:236)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.embedded.tomcat.TomcatStarter.onStartup(TomcatStarter.java:53)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5219)
hapi-fhir-jpaserver-start | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1396)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1386)
hapi-fhir-jpaserver-start | at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
hapi-fhir-jpaserver-start | at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
hapi-fhir-jpaserver-start | at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:919)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:835)
hapi-fhir-jpaserver-start | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1396)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1386)
hapi-fhir-jpaserver-start | at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
hapi-fhir-jpaserver-start | at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
hapi-fhir-jpaserver-start | at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:919)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.StandardEngine.startInternal(StandardEngine.java:265)
hapi-fhir-jpaserver-start | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.StandardService.startInternal(StandardService.java:432)
hapi-fhir-jpaserver-start | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:930)
hapi-fhir-jpaserver-start | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
hapi-fhir-jpaserver-start | at org.apache.catalina.startup.Tomcat.start(Tomcat.java:486)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:123)hapi-fhir-jpaserver-start | at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.<init>(TomcatWebServer.java:104)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getTomcatWebServer(TomcatServletWebServerFactory.java:479)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:211)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:184)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
hapi-fhir-jpaserver-start | at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:577)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147)
hapi-fhir-jpaserver-start | at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:734)
hapi-fhir-jpaserver-start | at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408)
hapi-fhir-jpaserver-start | at org.springframework.boot.SpringApplication.run(SpringApplication.java:308)
hapi-fhir-jpaserver-start | at org.springframework.boot.SpringApplication.run(SpringApplication.java:1306)
hapi-fhir-jpaserver-start | at org.springframework.boot.SpringApplication.run(SpringApplication.java:1295)
hapi-fhir-jpaserver-start | at ca.uhn.fhir.jpa.starter.Application.main(Application.java:43)
hapi-fhir-jpaserver-start | at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
hapi-fhir-jpaserver-start | at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
hapi-fhir-jpaserver-start | at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
hapi-fhir-jpaserver-start | at java.base/java.lang.reflect.Method.invoke(Method.java:568)
hapi-fhir-jpaserver-start | at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:49)
hapi-fhir-jpaserver-start | at org.springframework.boot.loader.Launcher.launch(Launcher.java:108)
hapi-fhir-jpaserver-start | at org.springframework.boot.loader.Launcher.launch(Launcher.java:58)
hapi-fhir-jpaserver-start | at org.springframework.boot.loader.WarLauncher.main(WarLauncher.java:59)
hapi-fhir-jpaserver-start | 2022-12-26 16:37:12.068 [main] ERROR c.u.f.j.c.HapiFhirLocalContainerEntityManagerFactoryBean [AbstractEntityManagerFactoryBean.java:426] Failed to initialize JPA EntityManagerFactory: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
hapi-fhir-jpaserver-start | 2022-12-26 16:37:12.070 [main] ERROR o.s.b.w.e.tomcat.TomcatStarter [TomcatStarter.java:61] 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; nested exception is 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; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mySystemDaoR4': Injection of persistence dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.class]: Invocation of init method failed; nested exception is org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
hapi-fhir-jpaserver-start | 2022-12-26 16:37:12.104 [main] INFO o.a.catalina.core.StandardService [DirectJDKLog.java:173] Stopping service [Tomcat]
hapi-fhir-jpaserver-start | 2022-12-26 16:37:12.110 [main] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [AbstractApplicationContext.java:591] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat
hapi-fhir-jpaserver-start | 2022-12-26 16:37:12.132 [main] INFO o.s.b.a.l.ConditionEvaluationReportLoggingListener [ConditionEvaluationReportLoggingListener.java:136]
hapi-fhir-jpaserver-start |
hapi-fhir-jpaserver-start | Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
hapi-fhir-jpaserver-start | 2022-12-26 16:37:12.185 [main] ERROR o.s.boot.SpringApplication [SpringApplication.java:824] Application run failed
hapi-fhir-jpaserver-start | org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:165)
hapi-fhir-jpaserver-start | at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:577)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147)
hapi-fhir-jpaserver-start | at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:734)
hapi-fhir-jpaserver-start | at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408)
hapi-fhir-jpaserver-start | at org.springframework.boot.SpringApplication.run(SpringApplication.java:308)
hapi-fhir-jpaserver-start | at org.springframework.boot.SpringApplication.run(SpringApplication.java:1306)
hapi-fhir-jpaserver-start | at org.springframework.boot.SpringApplication.run(SpringApplication.java:1295)
hapi-fhir-jpaserver-start | at ca.uhn.fhir.jpa.starter.Application.main(Application.java:43)
hapi-fhir-jpaserver-start | at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
hapi-fhir-jpaserver-start | at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
hapi-fhir-jpaserver-start | at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
hapi-fhir-jpaserver-start | at java.base/java.lang.reflect.Method.invoke(Method.java:568)
hapi-fhir-jpaserver-start | at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:49)
hapi-fhir-jpaserver-start | at org.springframework.boot.loader.Launcher.launch(Launcher.java:108)
hapi-fhir-jpaserver-start | at org.springframework.boot.loader.Launcher.launch(Launcher.java:58)
hapi-fhir-jpaserver-start | at org.springframework.boot.loader.WarLauncher.main(WarLauncher.java:59)
hapi-fhir-jpaserver-start | Caused by: org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat
hapi-fhir-jpaserver-start | at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:142)hapi-fhir-jpaserver-start | at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.<init>(TomcatWebServer.java:104)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getTomcatWebServer(TomcatServletWebServerFactory.java:479)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:211)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:184)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162)
hapi-fhir-jpaserver-start | ... 16 common frames omitted
hapi-fhir-jpaserver-start | 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; nested exception is 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; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mySystemDaoR4': Injection of persistence dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.class]: Invocation of init method failed; nested exception is org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:800)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:541)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1352)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1195)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:213)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:212)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.ServletContextInitializerBeans.getOrderedBeansOfType(ServletContextInitializerBeans.java:203)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.ServletContextInitializerBeans.addServletContextInitializerBeans(ServletContextInitializerBeans.java:97)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.ServletContextInitializerBeans.<init>(ServletContextInitializerBeans.java:86)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getServletContextInitializerBeans(ServletWebServerApplicationContext.java:262)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.selfInitialize(ServletWebServerApplicationContext.java:236)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.embedded.tomcat.TomcatStarter.onStartup(TomcatStarter.java:53)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5219)
hapi-fhir-jpaserver-start | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1396)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1386)
hapi-fhir-jpaserver-start | at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
hapi-fhir-jpaserver-start | at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
hapi-fhir-jpaserver-start | at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:919)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:835)
hapi-fhir-jpaserver-start | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1396)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1386)
hapi-fhir-jpaserver-start | at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
hapi-fhir-jpaserver-start | at org.apache.tomcat.util.threads.InlineExecutorService.execute(InlineExecutorService.java:75)
hapi-fhir-jpaserver-start | at java.base/java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:145)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:919)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.StandardEngine.startInternal(StandardEngine.java:265)
hapi-fhir-jpaserver-start | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.StandardService.startInternal(StandardService.java:432)
hapi-fhir-jpaserver-start | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
hapi-fhir-jpaserver-start | at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:930)
hapi-fhir-jpaserver-start | at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:183)
hapi-fhir-jpaserver-start | at org.apache.catalina.startup.Tomcat.start(Tomcat.java:486)
hapi-fhir-jpaserver-start | at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:123)hapi-fhir-jpaserver-start | ... 21 common frames omitted
hapi-fhir-jpaserver-start | 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; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mySystemDaoR4': Injection of persistence dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.class]: Invocation of init method failed; nested exception is org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:800)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:541)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1352)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1195)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:887)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791)
hapi-fhir-jpaserver-start | ... 61 common frames omitted
hapi-fhir-jpaserver-start | Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'mySystemDaoR4': Injection of persistence dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.class]: Invocation of init method failed; nested exception is org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.postProcessProperties(PersistenceAnnotationBeanPostProcessor.java:351)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:887)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791)
hapi-fhir-jpaserver-start | ... 75 common frames omitted
hapi-fhir-jpaserver-start | Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [ca/uhn/fhir/jpa/starter/common/StarterJpaConfig.class]: Invocation of init method
failed; nested exception is org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1804)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:233)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveNamedBean(DefaultListableBeanFactory.java:1284)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveNamedBean(DefaultListableBeanFactory.java:1245)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveNamedBean(DefaultListableBeanFactory.java:1213)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.findDefaultEntityManagerFactory(PersistenceAnnotationBeanPostProcessor.java:565)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.findEntityManagerFactory(PersistenceAnnotationBeanPostProcessor.java:528)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor$PersistenceElement.resolveEntityManager(PersistenceAnnotationBeanPostProcessor.java:696)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor$PersistenceElement.getResourceToInject(PersistenceAnnotationBeanPostProcessor.java:669)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:228)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119)hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor.postProcessProperties(PersistenceAnnotationBeanPostProcessor.java:348)
hapi-fhir-jpaserver-start | ... 87 common frames omitted
hapi-fhir-jpaserver-start | Caused by: org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.createService(AbstractServiceRegistryImpl.java:275)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.initializeService(AbstractServiceRegistryImpl.java:237)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.getService(AbstractServiceRegistryImpl.java:214)
hapi-fhir-jpaserver-start | at org.hibernate.id.factory.internal.DefaultIdentifierGeneratorFactory.injectServices(DefaultIdentifierGeneratorFactory.java:175)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.injectDependencies(AbstractServiceRegistryImpl.java:286)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.initializeService(AbstractServiceRegistryImpl.java:243)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.getService(AbstractServiceRegistryImpl.java:214)
hapi-fhir-jpaserver-start | at org.hibernate.boot.internal.InFlightMetadataCollectorImpl.<init>(InFlightMetadataCollectorImpl.java:173)
hapi-fhir-jpaserver-start | at org.hibernate.boot.model.process.spi.MetadataBuildingProcess.complete(MetadataBuildingProcess.java:127)
hapi-fhir-jpaserver-start | at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.metadata(EntityManagerFactoryBuilderImpl.java:1460)
hapi-fhir-jpaserver-start | at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1494)
hapi-fhir-jpaserver-start | at org.hibernate.jpa.HibernatePersistenceProvider.createContainerEntityManagerFactory(HibernatePersistenceProvider.java:141)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:365)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396)
hapi-fhir-jpaserver-start | at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:341)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1863)
hapi-fhir-jpaserver-start | at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1800)
hapi-fhir-jpaserver-start | ... 103 common frames omitted
hapi-fhir-jpaserver-start | Caused by: org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set
hapi-fhir-jpaserver-start | at org.hibernate.engine.jdbc.dialect.internal.DialectFactoryImpl.determineDialect(DialectFactoryImpl.java:100)
hapi-fhir-jpaserver-start | at org.hibernate.engine.jdbc.dialect.internal.DialectFactoryImpl.buildDialect(DialectFactoryImpl.java:54)
hapi-fhir-jpaserver-start | at org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator.initiateService(JdbcEnvironmentInitiator.java:138)
hapi-fhir-jpaserver-start | at org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator.initiateService(JdbcEnvironmentInitiator.java:35)
hapi-fhir-jpaserver-start | at org.hibernate.boot.registry.internal.StandardServiceRegistryImpl.initiateService(StandardServiceRegistryImpl.java:101)
hapi-fhir-jpaserver-start | at org.hibernate.service.internal.AbstractServiceRegistryImpl.createService(AbstractServiceRegistryImpl.java:263)
hapi-fhir-jpaserver-start | ... 120 common frames omitted
hapi-fhir-jpaserver-start |
hapi-fhir-jpaserver-start | . ____ _ __ _ _
hapi-fhir-jpaserver-start | /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
hapi-fhir-jpaserver-start | ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
hapi-fhir-jpaserver-start | \\/ ___)| |_)| | | | | || (_| | ) ) ) )
hapi-fhir-jpaserver-start | ' |____| .__|_| |_|_| |_\__, | / / / /
hapi-fhir-jpaserver-start | =========|_|==============|___/=/_/_/_/
hapi-fhir-jpaserver-start | :: Spring Boot :: (v2.7.4)
hapi-fhir-jpaserver-start |
hapi-fhir-jpaserver-start | 2022-12-26 16:37:15.461 [background-preinit] INFO o.h.validator.internal.util.Version [Version.java:21] HV000001: Hibernate Validator 6.1.5.Final
hapi-fhir-jpaserver-start | 2022-12-26 16:37:15.694 [main] INFO ca.uhn.fhir.jpa.starter.Application [StartupInfoLogger.java:55] Starting Application using Java 17.0.4 on c4f36e470814 with PID 1 (/app/main.war started by nonroot in /app)
hapi-fhir-jpaserver-start | 2022-12-26 16:37:15.695 [main] INFO ca.uhn.fhir.jpa.starter.Application [SpringApplication.java:634] No active profile set, falling back to 1 default profile: "default"
hapi-fhir-jpaserver-start | 2022-12-26 16:37:18.404 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:132] Bootstrapping Spring Data JPA repositories in DEFAULT mode.
hapi-fhir-jpaserver-start | 2022-12-26 16:37:19.002 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:201] Finished Spring Data repository scanning in 574 ms. Found 53 JPA repository interfaces.
hapi-fhir-jpaserver-start | 2022-12-26 16:37:21.447 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java:376] Bean 'ca.uhn.fhir.jpa.config.BeanPostProcessorConfig' of type [ca.uhn.fhir.jpa.config.BeanPostProcessorConfig$$EnhancerBySpringCGLIB$$b5edf7ba] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
hapi-fhir-jpaserver-start | 2022-12-26 16:37:22.318 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http)
hapi-fhir-jpaserver-start | 2022-12-26 16:37:22.351 [main] INFO o.a.coyote.http11.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"]
hapi-fhir-jpaserver-start | 2022-12-26 16:37:22.352 [main] INFO o.a.catalina.core.StandardService [DirectJDKLog.java:173] Starting service [Tomcat]
hapi-fhir-jpaserver-start | 2022-12-26 16:37:22.353 [main] INFO o.a.catalina.core.StandardEngine [DirectJDKLog.java:173] Starting
Servlet engine: [Apache Tomcat/9.0.65]
hapi-fhir-jpaserver-start | 2022-12-26 16:37:31.341 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext
hapi-fhir-jpaserver-start | 2022-12-26 16:37:31.341 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:292] Root WebApplicationContext: initialization completed in 15233 ms
hapi-fhir-jpaserver-start | 2022-12-26 16:37:31.554 [main] INFO ca.uhn.fhir.util.VersionUtil [VersionUtil.java:84] HAPI FHIR version 6.2.2 - Rev 7b5d303f36
hapi-fhir-jpaserver-start | 2022-12-26 16:37:31.564 [main] INFO ca.uhn.fhir.context.FhirContext [FhirContext.java:210] Creating new FHIR context for FHIR version [R4]
hapi-fhir-jpaserver-start | 2022-12-26 16:37:31.701 [main] INFO o.h.jpa.internal.util.LogHelper [LogHelper.java:31] HHH000204: Processing PersistenceUnitInfo [name: HAPI_PU]
hapi-fhir-jpaserver-start | 2022-12-26 16:37:31.833 [main] INFO org.hibernate.Version [Version.java:44] HHH000412: Hibernate ORM core version 5.6.12.Final
hapi-fhir-jpaserver-start | 2022-12-26 16:37:32.264 [main] INFO o.h.annotations.common.Version [JavaReflectionManager.java:56] HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
hapi-fhir-jpaserver-start | 2022-12-26 16:37:32.458 [main] INFO com.zaxxer.hikari.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting...