Spring MongoDB保存

时间:2017-02-26 00:40:42

标签: spring mongodb mongodb-query spring-data spring-mongodb

我正在创建一个Spring Boot应用程序,而我正在前端使用AngularJS。

提交带有适当参数的表单后,Spring应该使用bookRepository.save()方法将所提供的数据保存在MongoDB中。问题是,这个动作继续进行,但我的模型的结构不受尊重。

@Document(collection = "books")
public class Book {
    private String id;

    private String title;

    private String author;

    private String description;

    private String cover;

    // Getters and setters below.
}

遵循上述过程后的最终结果:我没有在MongoDB中插入上述结构后的记录,而是最终得到一个包含_id_class的字段。

关于为什么会发生这种情况的任何想法?

0 个答案:

没有答案