All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.diboot.iam.annotation.process.IamAsyncWorker Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2015-2020, www.dibo.ltd ([email protected]).
 * 

* Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at *

* https://www.apache.org/licenses/LICENSE-2.0 *

* Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package com.diboot.iam.annotation.process; import com.diboot.iam.entity.BaseLoginUser; import com.diboot.iam.entity.IamLoginTrace; import com.diboot.iam.entity.IamOperationLog; import com.diboot.iam.service.IamLoginTraceService; import com.diboot.iam.service.IamOperationLogService; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Component; /** * 异步相关处理 * @author [email protected] * @version v2.1.2 * @date 2020/09/21 */ @Slf4j @Async @Component public class IamAsyncWorker { @Autowired private IamLoginTraceService iamLoginTraceService; @Autowired private IamOperationLogService iamOperationLogService; /** * 保存登录日志 * @param loginTrace */ public void saveLoginTraceLog(IamLoginTrace loginTrace){ try{ iamLoginTraceService.createEntity(loginTrace); } catch (Exception e){ log.error("保存登录日志异常", e); } } /** * 保存操作日志 * @param operationLog */ public void saveOperationLog(IamOperationLog operationLog, BaseLoginUser loginUser) { try{ // 操作用户信息 if(loginUser != null){ operationLog.setUserType(loginUser.getClass().getSimpleName()) .setUserId(loginUser.getId()) .setUserRealname(loginUser.getDisplayName()); } iamOperationLogService.createEntity(operationLog); } catch (Exception e){ log.error("保存操作日志异常", e); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy