欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java实现抽奖功能

程序员文章站 2022-03-10 09:05:24
本文实例为大家分享了java实现抽奖功能的具体代码,供大家参考,具体内容如下1 概述项目开发中经常会有抽奖这样的营销活动的需求,例如:积分大转盘、刮刮乐、*等等多种形式,其实后台的实现方法是一样的...

本文实例为大家分享了java实现抽奖功能的具体代码,供大家参考,具体内容如下

1 概述

项目开发中经常会有抽奖这样的营销活动的需求,例如:积分大转盘、刮刮乐、*等等多种形式,其实后台的实现方法是一样的,本文介绍一种常用的抽奖实现方法。

整个抽奖过程包括以下几个方面:

  • 奖品
  • 奖品池
  • 抽奖算法
  • 奖品限制
  • 奖品发放

2 奖品

奖品包括奖品、奖品概率和限制、奖品记录。
奖品表:

create table `points_luck_draw_prize` (
 `id` bigint(20) not null auto_increment,
 `name` varchar(50) default null comment '奖品名称',
 `url` varchar(50) default null comment '图片地址',
 `value` varchar(20) default null,
 `type` tinyint(4) default null comment '类型1:红包2:积分3:体验金4:谢谢惠顾5:自定义',
 `status` tinyint(4) default null comment '状态',
 `is_del` bit(1) default null comment '是否删除',
 `position` int(5) default null comment '位置',
 `phase` int(10) default null comment '期数',
 `create_time` datetime default null,
 `update_time` datetime default null,
 primary key (`id`)
) engine=innodb auto_increment=164 default charset=utf8mb4 comment='奖品表';

奖品概率限制表:

create table `points_luck_draw_probability` (
 `id` bigint(20) not null auto_increment,
 `points_prize_id` bigint(20) default null comment '奖品id',
 `points_prize_phase` int(10) default null comment '奖品期数',
 `probability` float(4,2) default null comment '概率',
 `frozen` int(11) default null comment '商品抽中后的冷冻次数',
 `prize_day_max_times` int(11) default null comment '该商品平台每天最多抽中的次数',
 `user_prize_month_max_times` int(11) default null comment '每位用户每月最多抽中该商品的次数',
 `create_time` datetime default null,
 `update_time` datetime default null,
 primary key (`id`)
) engine=innodb auto_increment=114 default charset=utf8mb4 comment='抽奖概率限制表';

奖品记录表:

create table `points_luck_draw_record` (
 `id` bigint(20) not null auto_increment,
 `member_id` bigint(20) default null comment '用户id',
 `member_mobile` varchar(11) default null comment '中奖用户手机号',
 `points` int(11) default null comment '消耗积分',
 `prize_id` bigint(20) default null comment '奖品id',
 `result` smallint(4) default null comment '1:中奖 2:未中奖',
 `month` varchar(10) default null comment '中奖月份',
 `daily` date default null comment '中奖日期(不包括时间)',
 `create_time` datetime default null,
 `update_time` datetime default null,
 primary key (`id`)
) engine=innodb auto_increment=3078 default charset=utf8mb4 comment='抽奖记录表';

3 奖品池

奖品池是根据奖品的概率和限制组装成的抽奖用的池子。主要包括奖品的总池值和每个奖品所占的池值(分为开始值和结束值)两个维度。

  • 奖品的总池值:所有奖品池值的总和。
  • 每个奖品的池值:算法可以变通,常用的有以下两种方式 :

1)、奖品的概率*10000(保证是整数)
2)、奖品的概率10000奖品的剩余数量

奖品池bean:

public class prizepool implements serializable{
 /**
  * 总池值
  */
 private int total;
 /**
  * 池中的奖品
  */
 private list<prizepoolbean> poolbeanlist;
}

池中的奖品bean:

public class prizepoolbean implements serializable{
 /**
  * 数据库中真实奖品的id
  */
 private long id;
 /**
  * 奖品的开始池值
  */
 private int begin;
 /**
  * 奖品的结束池值
  */
 private int end;
}

奖品池的组装代码:

/**
  * 获取超级大富翁的奖品池
  * @param zillionaireproductmap 超级大富翁奖品map
  * @param flag true:有现金 false:无现金
  * @return
  */
 private prizepool getzillionaireprizepool(map<long, activityproduct> zillionaireproductmap, boolean flag) {
  //总的奖品池值
  int total = 0;
  list<prizepoolbean> poolbeanlist = new arraylist<>();
  for(entry<long, activityproduct> entry : zillionaireproductmap.entryset()){
   activityproduct product = entry.getvalue();
   //无现金奖品池,过滤掉类型为现金的奖品
   if(!flag && product.getcategoryid() == activityprizetypeenums.xj.gettype()){
    continue;
   }
   //组装奖品池奖品
   prizepoolbean prizepoolbean = new prizepoolbean();
   prizepoolbean.setid(product.getproductdescriptionid());
   prizepoolbean.setbengin(total);
   total = total + product.getearnings().multiply(new bigdecimal("10000")).intvalue();
   prizepoolbean.setend(total);
   poolbeanlist.add(prizepoolbean);
  }

  prizepool prizepool = new prizepool();
  prizepool.settotal(total);
  prizepool.setpoolbeanlist(poolbeanlist);
  return prizepool;
}

4 抽奖算法

整个抽奖算法为:

1. 随机奖品池总池值以内的整数
2. 循环比较奖品池中的所有奖品,随机数落到哪个奖品的池区间即为哪个奖品中奖。
抽奖代码:

public static prizepoolbean getprize(prizepool prizepool){
  //获取总的奖品池值
  int total = prizepool.gettotal();
  //获取随机数
  random rand=new random();
  int random=rand.nextint(total);
  //循环比较奖品池区间
  for(prizepoolbean prizepoolbean : prizepool.getpoolbeanlist()){
   if(random >= prizepoolbean.getbengin() && random < prizepoolbean.getend()){
    return prizepoolbean;
   }
  }
  return null;
 }

5 奖品限制

实际抽奖中对一些比较大的奖品往往有数量限制,比如:某某奖品一天最多被抽中5次、某某奖品每位用户只能抽中一次。。等等类似的限制,对于这样的限制我们分为两种情况来区别对待:

1. 限制的奖品比较少,通常不多于3个:这种情况我们可以再组装奖品池的时候就把不符合条件的奖品过滤掉,这样抽中的奖品都是符合条件的。例如,在上面的超级大富翁抽奖代码中,我们规定现金奖品一天只能被抽中5次,那么我们可以根据判断条件分别组装出有现金的奖品和没有现金的奖品。
2. 限制的奖品比较多,这样如果要采用第一种方式,就会导致组装奖品非常繁琐,性能低下,我们可以采用抽中奖品后校验抽中的奖品是否符合条件,如果不符合条件则返回一个固定的奖品即可。

6 奖品发放

奖品发放可以采用工厂模式进行发放:不同的奖品类型走不同的奖品发放处理器,示例代码如下:
奖品发放:

/**
  * 异步分发奖品
  * @param prizelist
  * @throws exception
  */
 @async("myasync")
 @transactional(rollbackfor = exception.class, propagation = propagation.required)
 public future<boolean> sendprize(long memberid, list<prizedto> prizelist){
  try {
   for(prizedto prizedto : prizelist){
    //过滤掉谢谢惠顾的奖品
    if(prizedto.gettype() == pointsluckdrawtypeenum.xxhg.gettype()){
     continue;
    }
    //根据奖品类型从工厂中获取奖品发放类
    sendprizeprocessor sendprizeprocessor = sendprizeprocessorfactory.getsendprizeprocessor(
     pointsluckdrawtypeenum.getpointsluckdrawtypeenumbytype(prizedto.gettype()));
    if(objectutil.isnotnull(sendprizeprocessor)){
     //发放奖品
     sendprizeprocessor.send(memberid, prizedto);
    }
   }
   return new asyncresult<>(boolean.true);
  }catch (exception e){
   //奖品发放失败则记录日志
   savesendprizeerrorlog(memberid, prizelist);
   logger.error("积分抽奖发放奖品出现异常", e);
   return new asyncresult<>(boolean.false);
  }
}

工厂类:

@component
public class sendprizeprocessorfactory implements applicationcontextaware{
 private applicationcontext applicationcontext;

 @override
 public void setapplicationcontext(applicationcontext applicationcontext) throws beansexception {
  this.applicationcontext = applicationcontext;
 }

 public sendprizeprocessor getsendprizeprocessor(pointsluckdrawtypeenum typeenum){
  string processorname = typeenum.getsendprizeprocessorname();
  if(strutil.isblank(processorname)){
   return null;
  }
  sendprizeprocessor processor = applicationcontext.getbean(processorname, sendprizeprocessor.class);
  if(objectutil.isnull(processor)){
   throw new runtimeexception("没有找到名称为【" + processorname + "】的发送奖品处理器");
  }
  return processor;
 }
}

奖品发放类举例:

/**
 * 红包奖品发放类
 */
@component("sendhbprizeprocessor")
public class sendhbprizeprocessor implements sendprizeprocessor{
 private logger logger = loggerfactory.getlogger(sendhbprizeprocessor.class);
 @resource
 private couponservice couponservice;
 @resource
 private messagelogservice messagelogservice;

 @override
 public void send(long memberid, prizedto prizedto) throws exception {
  // 发放红包
  coupon coupon = couponservice.receivecoupon(memberid, long.parselong(prizedto.getvalue()));
  //发送站内信
  messagelogservice.insertactivitymessagelog(memberid,
   "你参与积分抽大奖活动抽中的" + coupon.getamount() + "元理财红包已到账,谢谢参与",
   "积分抽大奖中奖通知");
  //输出log日志
  logger.info(memberid + "在积分抽奖中抽中的" + prizedto.getprizename() + "已经发放!");
 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

相关标签: java 抽奖