Example usage for org.springframework.data.rest.webmvc RepositoryLinksResource RepositoryLinksResource

List of usage examples for org.springframework.data.rest.webmvc RepositoryLinksResource RepositoryLinksResource

Introduction

In this page you can find the example usage for org.springframework.data.rest.webmvc RepositoryLinksResource RepositoryLinksResource.

Prototype

RepositoryLinksResource

Source Link

Usage

From source file:org.springframework.data.rest.webmvc.config.RepositoryRestMvConfigurationIntegrationTests.java

@Test
public void assertBeansBeingSetUp() throws Exception {

    context.getBean(PageableHandlerMethodArgumentResolver.class);

    // Verify HAL setup
    context.getBean("halJacksonHttpMessageConverter", HttpMessageConverter.class);
    ObjectMapper mapper = context.getBean("halObjectMapper", ObjectMapper.class);
    mapper.writeValueAsString(new RepositoryLinksResource());
}