Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NoSuchMethodError: HateoasProperties.getUseHalAsDefaultJsonMediaType() in Spring Boot 3.5.0-M2 #2954

Open
wtell400 opened this issue Apr 1, 2025 · 0 comments

Comments

@wtell400
Copy link

wtell400 commented Apr 1, 2025

Describe the bug

Springdoc's org.springdoc.core.providers.HateoasHalProvider calls HateoasProperties::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:

  • What version of spring-boot you are using?
    Spring Boot 3.5.0-M2 + Spring Hateoas 2.5.0-M1
  • What modules and versions of springdoc-openapi are you using?
    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 overrides isHalEnabled which retrieves the configuration property via @Value.

@Configuration
public class HateoasHalProviderWorkaroundConfiguration {
    @Value("${spring.hateoas.use-hal-as-default-json-media-type:true}")
    private boolean useHalAsDefaultJsonMediaType;

    static class HateoasHalProviderWorkaround extends HateoasHalProvider {
        private final boolean useHalAsDefaultJsonMediaType;

        public HateoasHalProviderWorkaround(Optional<HateoasProperties> hateoasPropertiesOptional, ObjectMapperProvider objectMapperProvider, boolean useHalAsDefaultJsonMediaType) {
            super(hateoasPropertiesOptional, objectMapperProvider);
            this.useHalAsDefaultJsonMediaType = useHalAsDefaultJsonMediaType;
        }

        @Override
        public boolean isHalEnabled() {
            return useHalAsDefaultJsonMediaType;
        }
    }

    @Bean
    HateoasHalProvider hateoasHalProvider(Optional<HateoasProperties> hateoasPropertiesOptional, ObjectMapperProvider objectMapperProvider) {
        return new HateoasHalProviderWorkaround(hateoasPropertiesOptional, objectMapperProvider, useHalAsDefaultJsonMediaType);
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant