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
My workaround for now is to explicitly specifiy HateoasHalProvider so that the default bean is not loaded. The workaround overrides isHalEnabled which retrieves the configuration property via @Value.
Describe the bug
Springdoc's
org.springdoc.core.providers.HateoasHalProvider
callsHateoasProperties::getUseHalAsDefaultJsonMediaType
.Spring Boot 3.5.0-M2 changed
org.springframework.boot.autoconfigure.hateoas.HateoasProperties.getUseHalAsDefaultJsonMediaType()
to:
org.springframework.boot.autoconfigure.hateoas.HateoasProperties.isUseHalAsDefaultJsonMediaType()
resulting in
java.lang.NoSuchMethodError: 'boolean org.springframework.boot.autoconfigure.hateoas.HateoasProperties.getUseHalAsDefaultJsonMediaType()'
To Reproduce
Steps to reproduce the behavior:
Spring Boot 3.5.0-M2 + Spring Hateoas 2.5.0-M1
Springdoc-openapi 2.8.6
Error occurs on spring contextLoads().
Expected behavior
No runtime.
Additional context
Pull request in Spring Boot: spring-projects/spring-boot#43934
My workaround for now is to explicitly specifiy
HateoasHalProvider
so that the default bean is not loaded. The workaround overridesisHalEnabled
which retrieves the configuration property via@Value
.The text was updated successfully, but these errors were encountered: