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
Auto-configuration not working when using spring boot 3 or above as the usage of spring.factories has been dropped in favor of org.springframework.boot.autoconfigure.AutoConfiguration.imports file. More details here.
As a workaround, auto-configurations can be be manually imported manually using @ImportAutoConfiguration({TracerAutoConfiguration.class, TracerRegisterAutoConfiguration.class})
The text was updated successfully, but these errors were encountered:
Auto-configuration not working when using spring boot 3 or above as the usage of
spring.factories
has been dropped in favor oforg.springframework.boot.autoconfigure.AutoConfiguration.imports
file. More details here.As a workaround, auto-configurations can be be manually imported manually using
@ImportAutoConfiguration({TracerAutoConfiguration.class, TracerRegisterAutoConfiguration.class})
The text was updated successfully, but these errors were encountered: