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

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

Introduction

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

Prototype

public ObjectId getId() 

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);//  w w  w  .j  a va2  s . c om

    assertNotNull(genId.getId());
}