XML Configuration Equivalent of @EnableHypermediaS

2019-08-05 06:11发布

I was reading through an article on REST API development with Spring-HATEOAS, as well as browsing the project page and docs, but have so far only seen example code using Java configuration. Is there an XML equivalent to @EnableHypermediaSupport and the configuration seen in the article's example?

@Configuration
@ComponentScan
@EnableWebMvc
@EnableHypermediaSupport
class WebMvcConfiguration extends WebMvcConfigurationSupport {

    @Override
    public void configureContentNegotiation(ContentNegotiationConfigurer c) {
        c.defaultContentType(MediaType.APPLICATION_JSON);
    }

    @Bean
    public MultipartResolver multipartResolver() { .. }

} 

1条回答
The star\"
2楼-- · 2019-08-05 06:59

There currently is none. Feel free to open a ticket in the issue tracker.

查看更多
登录 后发表回答