如何让收藏中的字段自动递增?
@Document
public class Product {
@Id
private BigInteger id;
private String name;
// need to be auto inc
private int version;
我使用CrudRepository
public interface ProductRepository extends CrudRepository<Product,BigInteger> {
}
我需要在每个新产品的创建中增加版本。 例如: {_id“:”56d21eaeb61595413b3b3db7“,”name“:”Prod 1“,”version“:”1“} {_ id”:“56d21eaeb61595413b3b3dbb”,“name”:“Prod 2”,“version”:“2”}