Example usage for org.springframework.data.rest.webmvc.jpa Person Person

List of usage examples for org.springframework.data.rest.webmvc.jpa Person Person

Introduction

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

Prototype

public Person() 

Source Link

Usage

From source file:org.springframework.data.rest.webmvc.jpa.JpaWebTests.java

/**
 * @see DATAREST-50/*from  w  ww.  j av a  2  s .com*/
 */
@Test
public void propertiesCanHaveNulls() throws Exception {

    Link peopleLink = client.discoverUnique("people");

    Person frodo = new Person();
    frodo.setFirstName("Frodo");
    frodo.setLastName(null);

    MockHttpServletResponse response = postAndGet(peopleLink, mapper.writeValueAsString(frodo),
            MediaType.APPLICATION_JSON);
    String responseBody = response.getContentAsString();

    assertEquals(JsonPath.read(responseBody, "$.firstName"), "Frodo");
    assertNull(JsonPath.read(responseBody, "$.lastName"));
}