You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In master, jpaserver-starter is using hapi-fhir 6.2.2, which uses an older version of Logback that still contains org/slf4j/impl/StaticLoggerBinder
In order to fix 466 (as of this writing, still pending), we needed to explicitly downgrade logback-core and logback-classic to 1.2.10. Otherwise, the application and unit tests will fail with java.lang.NoClassDefFoundError: org/slf4j/impl/StaticLoggerBinder
The ideal solution is to upgrade to SpringBoot 3.0.1 and explicitly within the jpaserver-starter pom.xml. This should not depend on any springboot configuration in hapi-fhir since that may be removed there entirely
However, this is a major version jump and will likely initially result in errors and dependencies to be resolved/upgraded
The text was updated successfully, but these errors were encountered:
Please see: 466.
Background
hapi-fhir
6.2.2, which uses an older version of Logback that still contains org/slf4j/impl/StaticLoggerBinderlogback-core
andlogback-classic
to 1.2.10. Otherwise, the application and unit tests will fail withjava.lang.NoClassDefFoundError: org/slf4j/impl/StaticLoggerBinder
Fix
The text was updated successfully, but these errors were encountered: