自定义注解配合aop

首先创建一个自定义注解,此注解使用在流程抄送的service方法上

import java.lang.annotation.*;

/**

* 流程需要抄送的功能

*/

@Target(ElementType.METHOD)

@Retention(RetentionPolicy.RUNTIME)

public @interface FuncCCAnnotation {

String desc() default "";

    String funcId() default "";

}

使用时只需要在方法上注解

/**

* 完成任务

*

* @param baseProcessForm 流程任务表单

* @return string

*/

@Override

@Transactional(rollbackFor = RuntimeException.class)

@FuncCCAnnotation(desc ="通过", funcId ="5")

public StringcompleteTask(BaseProcessForm baseProcessForm) {

//具体省略

}

最后创建aop

import java.lang.reflect.Method;

import java.util.*;

import java.util.stream.Collectors;

import javax.servlet.http.HttpServletRequest;

import javax.validation.constraints.NotNull;

import cn.hutool.core.collection.CollUtil;

import com.alibaba.fastjson.JSONArray;

import com.alibaba.fastjson.JSONObject;

import com.baomidou.mybatisplus.core.toolkit.CollectionUtils;

import com.sx.common.exception.SxException;

import com.sx.common.util.ServletUtil;

import com.sx.gov.express.annotation.FuncCCAnnotation;

import com.sx.gov.express.entity.SxFlowCc;

import com.sx.gov.express.form.BaseProcessForm;

import com.sx.gov.express.service.SxFlowCcService;

import com.sx.smart.form.util.DbUtils;

import com.sx.system.constants.SystemCommonConstants;

import com.sx.system.mapper.SysUserMapper;

import com.sx.system.uitl.UserUtil;

import com.sx.work.flow.exceptionhandler.FlowExceptionEnum;

import com.sx.work.flow.mapper.FlowIdentityMapper;

import org.apache.commons.lang3.ArrayUtils;

import org.apache.commons.lang3.StringUtils;

import org.aspectj.lang.JoinPoint;

import org.aspectj.lang.ProceedingJoinPoint;

import org.aspectj.lang.Signature;

import org.aspectj.lang.annotation.*;

import org.aspectj.lang.reflect.MethodSignature;

import org.flowable.bpmn.model.*;

import org.flowable.engine.RepositoryService;

import org.flowable.engine.TaskService;

import org.flowable.task.api.Task;

import org.flowable.task.service.impl.persistence.entity.TaskEntity;

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

import org.springframework.stereotype.Component;

import org.springframework.web.context.request.RequestContextHolder;

import org.springframework.web.context.request.ServletRequestAttributes;

@Aspect

@Component

public class FuncCcAop {

@Autowired

    private TaskServicetaskService;

    @Autowired

    private RepositoryServicerepositoryService;

    @Autowired

    private FlowIdentityMapperflowIdentityMapper;

    @Autowired

    private SysUserMapperuserMapper;

    @Autowired

    private SxFlowCcServicesxFlowCcService;

    /**

    * 切面

    */

    @Pointcut("@annotation(com.sx.gov.express.annotation.FuncCCAnnotation)")

public void insertCC() {

}

/**

    * 环绕操作

    *

    * @param point 切入点

    * @return 原方法返回值

    * @throws Throwable 异常信息

    */

    @Around("insertCC()")

public Object aroundLog(@NotNull ProceedingJoinPoint point)throws Throwable {

String methodName = point.getSignature().getName();

        String declaringTypeName = point.getSignature().getDeclaringTypeName();

        Signature signature = point.getSignature();

        MethodSignature methodSignature = (MethodSignature) signature;

        Method method = methodSignature.getMethod();

        Object[] paramValues = point.getArgs();

//        String[] paramNames = ((MethodSignature) point.getSignature()).getParameterNames();

        BaseProcessForm baseProcessForm = (BaseProcessForm) paramValues[0];

        String flowTaskId = baseProcessForm.getFlowTaskId();

        Task task =taskService.createTaskQuery().includeProcessVariables().taskId(flowTaskId).singleResult();

        BpmnModel bpmnModel =repositoryService.getBpmnModel(task.getProcessDefinitionId());

        FlowNode flowNode = (FlowNode) bpmnModel.getFlowElement(task.getTaskDefinitionKey());

        // 查找当前节点的用户配置

        Map> extensionElements = flowNode.getExtensionElements();

        List ccCustom = extensionElements.get("ccCustom");

        if (ccCustom !=null) {

FuncCCAnnotation funcCCAnnotation = method.getAnnotation(FuncCCAnnotation.class);

            String action = funcCCAnnotation.desc();

            String funcId = funcCCAnnotation.funcId();

            ExtensionAttribute ccFuncId = ccCustom.get(0).getAttributes().get("funcId").get(0);

            String[] ccFuncIds = ccFuncId.getValue().split(",");

            if (ArrayUtils.contains(ccFuncIds, funcId)) {

String itemCode = (String) task.getProcessVariables().get("itemCode");

                String taskCode = (String) task.getProcessVariables().get("taskCode");

                String itemName = DbUtils.getItemByCode(itemCode).getItemName();

                String userTaskId = task.getTaskDefinitionKey();

                String userTaskName = task.getName();

                String createUserName = UserUtil.getUser().getUserName();

                Set userSet = userTaskVariables(ccCustom, itemCode, taskCode);

                List sxFlowCcList = userSet.stream().map(uid -> {

SxFlowCc sxFlowCc =new SxFlowCc();

                    sxFlowCc.setItemCode(itemCode);

                    sxFlowCc.setTaskCode(taskCode);

                    sxFlowCc.setItemName(itemName);

                    sxFlowCc.setAction(action);

                    sxFlowCc.setUserTaskId(userTaskId);

                    sxFlowCc.setUserTaskName(userTaskName);

                    sxFlowCc.setCcUserId(Integer.parseInt(uid));

                    sxFlowCc.setCcUserName(UserUtil.getUserInfo(uid).getUserName());

                    sxFlowCc.setCreateUserName(createUserName);

                    return sxFlowCc;

                }).collect(Collectors.toList());

                if (CollUtil.isNotEmpty(userSet)) {

sxFlowCcService.saveBatch(sxFlowCcList);

                }

}

}

return point.proceed();

    }

/**

    * 具体处理用户信息

    *

    * @param ccCustom

    * @return Set

*/

    private SetuserTaskVariables(List ccCustom, String itemCode, String taskCode) {

Set assigneeSet =new HashSet<>();

        Map valueMap =null;

        // 人员处理--直接设置用户uid

        boolean userFlag = ccCustom.get(0).getAttributes().get("userFlag") !=null;

        boolean roleFlag = ccCustom.get(0).getAttributes().get("roleFlag") !=null;

        boolean orgFlag = ccCustom.get(0).getAttributes().get("orgFlag") !=null;

        if (userFlag) {

Map> childElements = ccCustom.get(0).getChildElements();

            Map> user = childElements.get("user").get(0).getAttributes();

            String formField = user.get("formField").get(0).getValue();

            List uid = Arrays.asList(user.get("uid").get(0).getValue().split(","));

            if ("1".equals(formField)) {

//指定人员

                assigneeSet.addAll(uid);

            }else if ("2".equals(formField)) {

//从表单中获取录入的人员信息

                valueMap = DbUtils.getValMapByItem(itemCode, taskCode);

                Map finalValueMap = valueMap;

                List collectIds = uid.stream().map(id -> String.valueOf(finalValueMap.get(id))).collect(Collectors.toList());

                collectIds.forEach(collectId -> {

assigneeSet.addAll(Arrays.stream(collectId.split(",")).collect(Collectors.toList()));

                });

            }

}

// 角色处理--查找到角色相对应的uid

        if (roleFlag) {

Set assigneeRolSet =new HashSet<>();

            Map> childElements = ccCustom.get(0).getChildElements();

            List roleIds = Arrays.asList(

childElements.get("role").get(0).getAttributes().get("roleId").get(0).getValue().split(","));

            Set uids =flowIdentityMapper.selectUidByRoleIds(roleIds);

            assigneeRolSet.addAll(uids);

            if (userFlag) {

//如果配置了人员信息,则取交集

                assigneeSet.retainAll(assigneeRolSet);

            }else {

assigneeSet.addAll(assigneeRolSet);

            }

}

// 部门机构处理--查找到部门相对应的uid

        if (orgFlag) {

Set assigneeOrgSet =new HashSet<>();

            Map> childElements = ccCustom.get(0).getChildElements();

            Map> org = childElements.get("org").get(0).getAttributes();

            String formField = org.get("formField").get(0).getValue();

            List orgIds = Arrays.asList(org.get("orgId").get(0).getValue().split(","));

            if ("2".equals(formField)) {

//"2"表示从表单字段中获取机构信息

                valueMap = valueMap ==null ? DbUtils.getValMapByItem(itemCode, taskCode) : valueMap;

                Map finalValueMap1 = valueMap;

                List orgs =new ArrayList<>();

                orgIds.forEach(orgId -> {

//拿到字段对应的值 格式为[{"name":"市场监督管理局","value":"438"}]

                    String values = String.valueOf(finalValueMap1.get(orgId));

                    //从机构信息中获取机构id

                    JSONArray objects = JSONArray.parseArray(values);

                    for (Object object : objects) {

JSONObject jsonObject = JSONObject.parseObject(JSONObject.toJSONString(object));

                        String value = jsonObject.getString("value");

                        orgs.add(value);

                    }

});

                orgIds = orgs;

            }

Set uids =flowIdentityMapper.selectUidByOrgIds(orgIds);

            assigneeOrgSet.addAll(uids);

            if (userFlag || roleFlag) {

//如果配置了人员信息或者权限标识,则取交集

                assigneeSet.retainAll(assigneeOrgSet);

            }else {

assigneeSet.addAll(assigneeOrgSet);

            }

}

return assigneeSet;

    }

}

以上为核心代码

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,602评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,442评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,878评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,306评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,330评论 5 373
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,071评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,382评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,006评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,512评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,965评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,094评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,732评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,283评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,286评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,512评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,536评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,828评论 2 345

推荐阅读更多精彩内容