java mongodb 注解_Spring data-mongodb ID自增长注解实现

package com.leftso.autoid;

import java.lang.reflect.Field;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.data.mongodb.core.FindAndModifyOptions;

import org.springframework.data.mongodb.core.MongoTemplate;

import org.springframework.data.mongodb.core.mapping.event.AbstractMongoEventListener;

import org.springframework.data.mongodb.core.mapping.event.BeforeSaveEvent;

import org.springframework.data.mongodb.core.query.Criteria;

import org.springframework.data.mongodb.core.query.Query;

import org.springframework.data.mongodb.core.query.Update;

import org.springframework.stereotype.Component;

import org.springframework.util.ReflectionUtils;

@Component

public class SaveEventListener extends AbstractMongoEventListener {

@Autowired

private MongoTemplate mongo;

@Override

public void onBeforeSave(BeforeSaveEvent event) {

Object source = event.getSource();

if (source != null) {

ReflectionUtils.doWithFields(source.getClass(), new ReflectionUtils.FieldCallback() {

public void doWith(Field field) throws IllegalArgumentException, IllegalAccessException {

ReflectionUtils.makeAccessible(field);

// 如果字段添加了我们自定义的AutoValue注解

if (field.isAnnotationPresent(AutoValue.class) && field.get(source) instanceof Number

&& field.getLong(source) == 0) {

// field.get(source) instanceof Number &&

// field.getLong(source)==0

// 判断注解的字段是否为number类型且值是否等于0.如果大于0说明有ID不需要生成ID

// 设置自增ID

field.set(source, getNextId(source.getClass().getSimpleName()));

}

}

});

}

}

/**

* 获取下一个自增ID

*

* @param collName

* 集合(这里用类名,就唯一性来说最好还是存放长类名)名称

* @return 序列值

*/

private Long getNextId(String collName) {

Query query = new Query(Criteria.where("coll_name").is(collName));

Update update = new Update();

update.inc("seq_id", 1);

FindAndModifyOptions options = new FindAndModifyOptions();

options.upsert(true);

options.returnNew(true);

SequenceId seq = mongo.findAndModify(query, update, options, SequenceId.class);

return seq.getSeqId();

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值