Example usage for org.springframework.data.mongodb.core.mapping PersonNullProperties PersonNullProperties

List of usage examples for org.springframework.data.mongodb.core.mapping PersonNullProperties PersonNullProperties

Introduction

In this page you can find the example usage for org.springframework.data.mongodb.core.mapping PersonNullProperties PersonNullProperties.

Prototype

public PersonNullProperties() 

Source Link

Usage

From source file:org.springframework.data.mongodb.core.mapping.MappingTests.java

@Test
public void testPersonWithNullProperties() {
    PersonNullProperties p = new PersonNullProperties();
    template.insert(p);

    assertNotNull(p.getId());
}