我正在阅读REST API development with Spring-HATEOAS上的一篇文章,以及浏览project page and docs,但到目前为止只看到了使用Java配置的示例代码。是否存在与@EnableHypermediaSupport
等效的XML以及文章示例中的配置?
@Configuration
@ComponentScan
@EnableWebMvc
@EnableHypermediaSupport
class WebMvcConfiguration extends WebMvcConfigurationSupport {
@Override
public void configureContentNegotiation(ContentNegotiationConfigurer c) {
c.defaultContentType(MediaType.APPLICATION_JSON);
}
@Bean
public MultipartResolver multipartResolver() { .. }
}