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

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

Introduction

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

Prototype

public GeneratedId(String name) 

Source Link

Usage

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

@Test
public void testGeneratedId() {
    GeneratedId genId = new GeneratedId("test");
    template.insert(genId);

    assertNotNull(genId.getId());
}