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

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

Introduction

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

Prototype

public void setFirstName(String firstName) 

Source Link

Usage

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

/**
 * @see DATAREST-50/*from   w w w . j  a  v a  2s  .c om*/
 */
@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"));
}