-
Notifications
You must be signed in to change notification settings - Fork 682
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
using @EnableSpringDataWebSupport with spring-data-rest results in BeanDefinitionOverrideException #3108
Comments
spring-projects/spring-boot#39797 is trying to fix this. |
For me the problem was that I also had |
but i think thats exactly the point - we want to have our current workaround looks like this: spring:
data:
web:
pageable:
serialization-mode: via-dto /**
* in order to use spring-data-rest with hateos for repository rest resources alongside spring-data-web with {@link PageSerializationMode#VIA_DTO},
* we enable {@link SpringDataWebProperties} and register {@link SpringDataWebSettings} manually
* because {@link SpringDataWebAutoConfiguration} is not applied due to {@link RepositoryRestMvcAutoConfiguration} taking precedence
* (@{@link AutoConfiguration}(after = {@link RepositoryRestMvcAutoConfiguration}.class), @{@link ConditionalOnMissingBean}({@link PageableHandlerMethodArgumentResolver}.class))
*
* @see SpringDataWebAutoConfiguration#springDataWebSettings()
* @see RepositoryRestMvcConfiguration#pageableResolver()
*/
@Configuration
@EnableConfigurationProperties(SpringDataWebProperties.class)
public class DataRestConfig {
@Bean
public SpringDataWebSettings springDataWebSettings(SpringDataWebProperties springDataWebProperties) {
return new SpringDataWebSettings(springDataWebProperties.getPageable().getSerializationMode());
}
} |
This is causing problems on our project. Enabling
|
Keeping Edit: My team wrongfully set the |
adding
@EnableSpringDataWebSupport
in a project that usesspring-boot-starter-data-rest
results in aBeanDefinitionOverrideException
preventing application startup.context: i want to use
PageSerializationMode.VIA_DTO
. while that "just worked" by default with spring-data-commons 3.3.0, from 3.3.1 on we have to add@EnableSpringDataWebSupport(pageSerializationMode = EnableSpringDataWebSupport.PageSerializationMode.VIA_DTO)
explicitly (due to #3101).sample app (boot-3.3.1-SNAPSHOT, spring-data-bom-2024.0.1-SNAPSHOT, spring-data-commons-3.3.1-SNAPSHOT at the time of writing) will be referenced asap.
The text was updated successfully, but these errors were encountered: