<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
目前有這麼個問題,有兩個系統CSP和OMS,這倆系統共用的是同一套紀錄檔操作:Log;目前想區分下這倆系統的紀錄檔操作,那沒辦法了,只能重寫一份Log的紀錄檔操作;
你也可以參照若依框架的紀錄檔系統實現。
sys_oper_csp_log
/* Navicat Premium Data Transfer Source Server : jp-csc-admin Source Server Type : MySQL Source Server Version : 50728 Source Host : rm-uf6miy84gu8u433x9.mysql.rds.aliyuncs.com:3306 Source Schema : jp_oms Target Server Type : MySQL Target Server Version : 50728 File Encoding : 65001 Date: 08/09/2022 09:21:45 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for sys_oper_csp_log -- ---------------------------- DROP TABLE IF EXISTS `sys_oper_csp_log`; CREATE TABLE `sys_oper_csp_log` ( `oper_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '紀錄檔主鍵', `title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '模組標題', `business_type` int(2) NULL DEFAULT 0 COMMENT '業務型別(0=其它,1=新增,2=修改,3=刪除,4=授權,5=匯出,6=匯入,7=強退,8=生成程式碼,9=清空資料)', `method` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '方法名稱', `request_method` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '請求方式', `operator_type` int(1) NULL DEFAULT 0 COMMENT '操作類別(0其它 1後臺使用者 2手機端使用者)', `oper_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '操作人員', `dept_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '部門名稱', `oper_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '請求URL', `oper_ip` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '主機地址', `oper_location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '操作地點', `oper_param` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '請求引數', `json_result` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '返回引數', `status` int(1) NULL DEFAULT 0 COMMENT '操作狀態(0正常 1異常)', `error_msg` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '錯誤訊息', `oper_time` datetime NULL DEFAULT NULL COMMENT '操作時間', PRIMARY KEY (`oper_id`) USING BTREE, INDEX `idx_time`(`oper_time`, `title`, `oper_name`) USING BTREE ) ENGINE = InnoD CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = 'CSP系統操作紀錄檔記錄';
package com.juepeiscm.csp.controller.csplog; import com.juepeiscm.admin.api.domain.SysOperLog; import com.juepeiscm.common.core.controller.BaseController; import com.juepeiscm.common.core.domain.AjaxResult; import com.juepeiscm.common.core.page.TableDataInfo; import com.juepeiscm.common.enums.BusinessType; import com.juepeiscm.common.utils.poi.ExcelUtil; import com.juepeiscm.csp.annotation.CspLog; import com.juepeiscm.csp.domain.csplog.SysOperCspLog; import com.juepeiscm.csp.service.csplog.ISysOperCspLogService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.web.bind.annotation.*; import java.util.List; /** * 操作CSP系統紀錄檔 * @Author: py.sun * @Date: 2022/9/7 14:51 */ @RestController @RequestMapping({"/csplog/opercsplog"}) public class SysOperCsplogController extends BaseController { @Autowired private ISysOperCspLogService operCspLogService; public SysOperCsplogController() { } /** * 查詢操作紀錄檔列表 * @param sysOperCspLog * @return */ @PreAuthorize("@ss.hasPermi('monitor:operlog:list')") @GetMapping({"/list"}) public TableDataInfo list(SysOperCspLog sysOperCspLog) { this.startPage(); List<SysOperCspLog> list = this.operCspLogService.selectOperLogList(sysOperCspLog); return this.getDataTable(list); } /** * 查詢系統模組的分類 * @param * @return */ @GetMapping({"/listTitle"}) public TableDataInfo listTitle() { this.startPage(); List<String> list = this.operCspLogService.selectOperLogListTitle(); return this.getDataTable(list); } @CspLog( title = "匯出CSP系統紀錄檔", businessType = BusinessType.EXPORT ) @PreAuthorize("@ss.hasPermi('monitor:operlog:export')") @GetMapping({"/export"}) public AjaxResult export(SysOperCspLog operLog) { List<SysOperCspLog> list = this.operCspLogService.selectOperLogList(operLog); ExcelUtil<SysOperCspLog> util = new ExcelUtil(SysOperLog.class); return util.exportExcel(list, "操作CSP系統紀錄檔"); } @CspLog( title = "操作CSP系統紀錄檔", businessType = BusinessType.DELETE ) @PreAuthorize("@ss.hasPermi('monitor:operlog:remove')") @DeleteMapping({"/{operIds}"}) public AjaxResult remove(@PathVariable Long[] operIds) { return this.toAjax(this.operCspLogService.deleteOperLogByIds(operIds)); } @CspLog( title = "清除CSP系統紀錄檔", businessType = BusinessType.CLEAN ) @PreAuthorize("@ss.hasPermi('monitor:operlog:remove')") @DeleteMapping({"/clean"}) public AjaxResult clean() { this.operCspLogService.cleanOperLog(); return AjaxResult.success(); } }
package com.juepeiscm.csp.service.csplog; import com.juepeiscm.admin.api.domain.SysOperLog; import com.juepeiscm.csp.domain.csplog.SysOperCspLog; import java.util.List; /** * @Author: py.sun * @Date: 2022/9/7 15:02 */ public interface ISysOperCspLogService { void insertOperlog(SysOperCspLog var1); List<SysOperCspLog> selectOperLogList(SysOperCspLog var1); List<String> selectOperLogListTitle(); int deleteOperLogByIds(Long[] var1); SysOperLog selectOperLogById(Long var1); void cleanOperLog(); }
package com.juepeiscm.csp.service.impl.csplog; import com.juepeiscm.admin.api.domain.SysOperLog; import com.juepeiscm.common.core.domain.AjaxResult; import com.juepeiscm.common.core.domain.entity.SysDept; import com.juepeiscm.common.core.domain.entity.SysUser; import com.juepeiscm.common.core.domain.model.LoginUser; import com.juepeiscm.common.exception.CustomException; import com.juepeiscm.common.utils.SecurityUtils; import com.juepeiscm.common.utils.ServletUtils; import com.juepeiscm.common.utils.StringUtils; import com.juepeiscm.csp.domain.csplog.SysOperCspLog; import com.juepeiscm.csp.mapper.csplog.SysOperCspLogMapper; import com.juepeiscm.csp.service.csplog.ISysOperCspLogService; import com.juepeiscm.framework.web.service.TokenService; import com.juepeiscm.uam.service.ISysDeptService; import com.juepeiscm.uam.version.UamVersion; import org.apache.dubbo.config.annotation.Reference; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; /** * @Author: py.sun * @Date: 2022/9/7 15:03 */ @Service public class SysOperCspLogServiceImpl implements ISysOperCspLogService { @Autowired private SysOperCspLogMapper operLogMapper; @Autowired private TokenService tokenService; @Reference(version = UamVersion.idV) public ISysDeptService deptService; @Override public void insertOperlog(SysOperCspLog sysOperCspLog) { try { this.operLogMapper.insertOperlog(sysOperCspLog); } catch (Exception e) { e.printStackTrace(); throw new CustomException("CSP系統紀錄檔插入失敗,請聯絡管理員!!!"); } } @Override public List<SysOperCspLog> selectOperLogList(SysOperCspLog sysOperCspLog) { return this.operLogMapper.selectOperLogList(sysOperCspLog); } @Override public List<String> selectOperLogListTitle() { return this.operLogMapper.selectOperLogListTitle(); } @Override public int deleteOperLogByIds(Long[] operIds) { return this.operLogMapper.deleteOperLogByIds(operIds); } @Override public SysOperLog selectOperLogById(Long operId) { return this.operLogMapper.selectOperLogById(operId); } @Override public void cleanOperLog() { this.operLogMapper.cleanOperLog(); } }
package com.juepeiscm.csp.mapper.csplog; import com.juepeiscm.admin.api.domain.SysOperLog; import com.juepeiscm.csp.domain.csplog.SysOperCspLog; import java.util.List; /** * @Author: py.sun * @Date: 2022/9/7 15:06 */ public interface SysOperCspLogMapper { void insertOperlog(SysOperCspLog var1); List<SysOperCspLog> selectOperLogList(SysOperCspLog sysOperCspLog); List<String> selectOperLogListTitle(); int deleteOperLogByIds(Long[] var1); SysOperLog selectOperLogById(Long var1); void cleanOperLog(); }
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.juepeiscm.csp.mapper.csplog.SysOperCspLogMapper"> <resultMap type="SysOperCspLog" id="SysOperLogResult"> <id property="operId" column="oper_id" /> <result property="title" column="title" /> <result property="businessType" column="business_type" /> <result property="method" column="method" /> <result property="requestMethod" column="request_method" /> <result property="operatorType" column="operator_type" /> <result property="operName" column="oper_name" /> <result property="deptName" column="dept_name" /> <result property="operUrl" column="oper_url" /> <result property="operIp" column="oper_ip" /> <result property="operLocation" column="oper_location" /> <result property="operParam" column="oper_param" /> <result property="jsonResult" column="json_result" /> <result property="status" column="status" /> <result property="errorMsg" column="error_msg" /> <result property="operTime" column="oper_time" /> </resultMap> <sql id="selectOperLogVo"> select oper_id, title, business_type, method, request_method, operator_type, oper_name, dept_name, oper_url, oper_ip, oper_location, oper_param, json_result, status, error_msg, oper_time from sys_oper_csp_log </sql> <insert id="insertOperlog" parameterType="SysOperCspLog"> insert into sys_oper_csp_log(title, business_type, method, request_method, operator_type, oper_name, dept_name, oper_url, oper_ip, oper_location, oper_param, json_result, status, error_msg, oper_time) values (#{title}, #{businessType}, #{method}, #{requestMethod}, #{operatorType}, #{operName}, #{deptName}, #{operUrl}, #{operIp}, #{operLocation}, #{operParam}, #{jsonResult}, #{status}, #{errorMsg}, sysdate()) </insert> <select id="selectOperLogList" parameterType="SysOperCspLog" resultMap="SysOperLogResult"> <include refid="selectOperLogVo"/> <where> <if test="title != null and title != ''"> AND title like concat('%', #{title}, '%') </if> <if test="businessType != null and businessType != ''"> AND business_type = #{businessType} </if> <if test="businessTypes != null and businessTypes.length > 0"> AND business_type in <foreach collection="businessTypes" item="businessType" open="(" separator="," close=")"> #{businessType} </foreach> </if> <if test="status != null"> AND status = #{status} </if> <if test="operName != null and operName != ''"> AND oper_name like concat('%', #{operName}, '%') </if> <if test="params.beginTime != null and params.beginTime != ''"><!-- 開始時間檢索 --> and date_format(oper_time,'%y%m%d') >= date_format(#{params.beginTime},'%y%m%d') </if> <if test="params.endTime != null and params.endTime != ''"><!-- 結束時間檢索 --> and date_format(oper_time,'%y%m%d') <= date_format(#{params.endTime},'%y%m%d') </if> </where> order by oper_id desc </select> <delete id="deleteOperLogByIds" parameterType="Long"> delete from sys_oper_csp_log where oper_id in <foreach collection="array" item="operId" open="(" separator="," close=")"> #{operId} </foreach> </delete> <select id="selectOperLogById" parameterType="Long" resultMap="SysOperLogResult"> <include refid="selectOperLogVo"/> where oper_id = #{operId} </select> <select id="selectOperLogListTitle" resultType="java.lang.String"> select distinct(title) from sys_oper_csp_log </select> <update id="cleanOperLog"> truncate table sys_oper_csp_log </update> </mapper>
定義一個紀錄檔管理的名稱:CspLog
package com.juepeiscm.csp.annotation; import com.juepeiscm.common.enums.BusinessType; import com.juepeiscm.common.enums.OperatorType; import java.lang.annotation.*; /** * CSP系統的紀錄檔管理 * @Author: py.sun * @Date: 2022/9/7 14:42 * @Target表示註解可以使用到哪些地方,可以是類,方法,或者是屬性上,定義在ElementType列舉中: * @Retention作用是定義被它所註解的註解保留多久,一共有三種策略,定義在RetentionPolicy列舉中: * * 我們的@CspLog註解,可以作用在方法和引數上,將由編譯器記錄在類檔案中,並在執行時由VM保留,因此可以反射性地讀取。該註解是通過AOP進行解析的 */ @Target({ElementType.PARAMETER, ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface CspLog { /** * 模組 * @return */ String title() default ""; /** * 功能 * @return */ BusinessType businessType() default BusinessType.OTHER; /** * 操作人類別 * @return */ OperatorType operatorType() default OperatorType.MANAGE; /** * 是否儲存請求的引數 * @return */ boolean isSaveRequestData() default true; }
package com.juepeiscm.csp.domain.csplog; import com.fasterxml.jackson.annotation.JsonFormat; import com.juepeiscm.common.annotation.Excel; import com.juepeiscm.common.core.domain.BaseEntity; import java.util.Date; /** * @Author: py.sun * @Date: 2022/9/7 15:04 */ public class SysOperCspLog extends BaseEntity { private static final long serialVersionUID = 1L; @Excel( name = "操作序號", cellType = Excel.ColumnType.NUMERIC ) private Long operId; @Excel( name = "操作模組" ) private String title; @Excel( name = "業務型別", readConverterExp = "0=其它,1=新增,2=修改,3=刪除,4=授權,5=匯出,6=匯入,7=強退,8=生成程式碼,9=清空資料" ) private Integer businessType; private Integer[] businessTypes; @Excel( name = "請求方法" ) private String method; @Excel( name = "請求方式" ) private String requestMethod; @Excel( name = "操作類別", readConverterExp = "0=其它,1=後臺使用者,2=手機端使用者" ) private Integer operatorType; @Excel( name = "操作人員" ) private String operName; @Excel( name = "部門名稱" ) private String deptName; @Excel( name = "請求地址" ) private String operUrl; @Excel( name = "操作地址" ) private String operIp; @Excel( name = "操作地點" ) private String operLocation; @Excel( name = "請求引數" ) private String operParam; @Excel( name = "返回引數" ) private String jsonResult; @Excel( name = "狀態", readConverterExp = "0=正常,1=異常" ) private Integer status; @Excel( name = "錯誤訊息" ) private String errorMsg; @JsonFormat( pattern = "yyyy-MM-dd HH:mm:ss" ) @Excel( name = "操作時間", width = 30.0D, dateFormat = "yyyy-MM-dd HH:mm:ss" ) private Date operTime; public SysOperCspLog() { } public Long getOperId() { return this.operId; } public void setOperId(Long operId) { this.operId = operId; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } public Integer getBusinessType() { return this.businessType; } public void setBusinessType(Integer businessType) { this.businessType = businessType; } public Integer[] getBusinessTypes() { return this.businessTypes; } public void setBusinessTypes(Integer[] businessTypes) { this.businessTypes = businessTypes; } public String getMethod() { return this.method; } public void setMethod(String method) { this.method = method; } public String getRequestMethod() { return this.requestMethod; } public void setRequestMethod(String requestMethod) { this.requestMethod = requestMethod; } public Integer getOperatorType() { return this.operatorType; } public void setOperatorType(Integer operatorType) { this.operatorType = operatorType; } public String getOperName() { return this.operName; } public void setOperName(String operName) { this.operName = operName; } public String getDeptName() { return this.deptName; } public void setDeptName(String deptName) { this.deptName = deptName; } public String getOperUrl() { return this.operUrl; } public void setOperUrl(String operUrl) { this.operUrl = operUrl; } public String getOperIp() { return this.operIp; } public void setOperIp(String operIp) { this.operIp = operIp; } public String getOperLocation() { return this.operLocation; } public void setOperLocation(String operLocation) { this.operLocation = operLocation; } public String getOperParam() { return this.operParam; } public void setOperParam(String operParam) { this.operParam = operParam; } public String getJsonResult() { return this.jsonResult; } public void setJsonResult(String jsonResult) { this.jsonResult = jsonResult; } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } public Date getOperTime() { return this.operTime; } public void setOperTime(Date operTime) { this.operTime = operTime; } }
大家一定要記住哈,所有針對實體的SysOperCspLog賦值操作必須在這裡main執行。
package com.juepeiscm.csp.controller.utils; import com.alibaba.fastjson.JSON; import com.juepeiscm.common.core.domain.entity.SysDept; import com.juepeiscm.common.core.domain.model.LoginUser; import com.juepeiscm.common.enums.BusinessStatus; import com.juepeiscm.common.enums.HttpMethod; import com.juepeiscm.common.utils.ServletUtils; import com.juepeiscm.common.utils.StringUtils; import com.juepeiscm.common.utils.ip.IpUtils; import com.juepeiscm.common.utils.spring.SpringUtils; import com.juepeiscm.csp.annotation.CspLog; import com.juepeiscm.csp.domain.csplog.SysOperCspLog; import com.juepeiscm.framework.aspectj.LogAspect; import com.juepeiscm.framework.manager.AsyncManager; import com.juepeiscm.framework.web.service.TokenService; import com.juepeiscm.uam.service.ISysDeptService; import com.juepeiscm.uam.version.UamVersion; import org.apache.dubbo.config.annotation.Reference; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.Signature; import org.aspectj.lang.annotation.AfterReturning; import org.aspectj.lang.annotation.AfterThrowing; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Pointcut; import org.aspectj.lang.reflect.MethodSignature; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component; import org.springframework.validation.BindingResult; import org.springframework.web.multipart.MultipartFile; import org.springframework.web.servlet.HandlerMapping; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.lang.reflect.Method; import java.util.Collection; import java.util.Iterator; import java.util.Map; /** * @Author: py.sun * @Date: 2022/9/7 16:31 * 操作紀錄檔記錄處理 */ @Aspect @Component public class CspLogAspect { private static final Logger log = LoggerFactory.getLogger(CspLog.class); @Reference(version = UamVersion.idV) public ISysDeptService deptService; public CspLogAspect() { } //把@CspLog設定為切入點。 設定織入點 @Pointcut("@annotation(com.juepeiscm.csp.annotation.CspLog)") public void logPointCut() { } //攔截異常操作 // 處理完請求後執行該方法。也就是用@CspLog註解的方法,執行完後,呼叫handleLog方法,處理返回結果。 @AfterReturning( pointcut = "logPointCut()", returning = "jsonResult" ) public void doAfterReturning(JoinPoint joinPoint, Object jsonResult) { this.handleLog(joinPoint, (Exception)null, jsonResult); } @AfterThrowing( value = "logPointCut()", throwing = "e" ) public void doAfterThrowing(JoinPoint joinPoint, Exception e) { this.handleLog(joinPoint, e, (Object)null); } // 如果函數丟擲了異常,也是執行handleLog方法,不過和正常返回的引數不一樣,此處是為了處理異常。 protected void handleLog(JoinPoint joinPoint, Exception e, Object jsonResult) { try { // 獲得註解 CspLog controllerLog = this.getAnnotationLog(joinPoint); if (controllerLog == null) { return; } // 獲取當前的使用者 LoginUser loginUser = ((TokenService) SpringUtils.getBean(TokenService.class)).getLoginUser(ServletUtils.getRequest()); // *========資料庫紀錄檔=========*// SysOperCspLog operLog = new SysOperCspLog(); operLog.setStatus(BusinessStatus.SUCCESS.ordinal()); // 請求的地址 String ip = IpUtils.getIpAddr(ServletUtils.getRequest()); operLog.setOperIp(ip); // 返回引數 operLog.setJsonResult(JSON.toJSONString(jsonResult)); operLog.setOperUrl(ServletUtils.getRequest().getRequestURI()); if (loginUser != null) { operLog.setOperName(loginUser.getUsername()); } // 獲取當前登入使用者的部門名稱 SysDept sysDept = deptService.selectDeptIdByUserIdAndAppId(loginUser.getUser().getUserId(), "oms"); if(sysDept != null && StringUtils.isNotEmpty(sysDept.getDeptName())){ operLog.setDeptName(sysDept.getDeptName()); } if (e != null) { operLog.setStatus(BusinessStatus.FAIL.ordinal()); operLog.setErrorMsg(StringUtils.substring(e.getMessage(), 0, 2000)); } // 設定方法名稱 String className = joinPoint.getTarget().getClass().getName(); String methodName = joinPoint.getSignature().getName(); operLog.setMethod(className + "." + methodName + "()"); // 設定請求方式 operLog.setRequestMethod(ServletUtils.getRequest().getMethod()); // 處理設定註解上的引數 this.getControllerMethodDescription(joinPoint, controllerLog, operLog); // 儲存資料庫 AsyncManager.me().execute(AsyncFactoryCsp.recordOper(operLog)); } catch (Exception var10) { // 記錄本地異常紀錄檔 log.error("==前置通知異常=="); log.error("異常資訊:{}", var10.getMessage()); var10.printStackTrace(); } } public void getControllerMethodDescription(JoinPoint joinPoint, CspLog log, SysOperCspLog operLog) throws Exception { operLog.setBusinessType(log.businessType().ordinal()); operLog.setTitle(log.title()); operLog.setOperatorType(log.operatorType().ordinal()); if (log.isSaveRequestData()) { this.setRequestValue(joinPoint, operLog); } } private void setRequestValue(JoinPoint joinPoint, SysOperCspLog operLog) throws Exception { String requestMethod = operLog.getRequestMethod(); if (!HttpMethod.PUT.name().equals(requestMethod) && !HttpMethod.POST.name().equals(requestMethod)) { Map<?, ?> paramsMap = (Map)ServletUtils.getRequest().getAttribute(HandlerMapping.URI_TEMPLATE_VARIABLES_ATTRIBUTE); operLog.setOperParam(StringUtils.substring(paramsMap.toString(), 0, 2000)); } else { String params = this.argsArrayToString(joinPoint.getArgs()); operLog.setOperParam(StringUtils.substring(params, 0, 2000)); } } private CspLog getAnnotationLog(JoinPoint joinPoint) throws Exception { Signature signature = joinPoint.getSignature(); MethodSignature methodSignature = (MethodSignature)signature; Method method = methodSignature.getMethod(); return method != null ? (CspLog)method.getAnnotation(CspLog.class) : null; } private String argsArrayToString(Object[] paramsArray) { String params = ""; if (paramsArray != null && paramsArray.length > 0) { for(int i = 0; i < paramsArray.length; ++i) { if (StringUtils.isNotNull(paramsArray[i]) && !this.isFilterObject(paramsArray[i])) { Object jsonObj = JSON.toJSON(paramsArray[i]); params = params + jsonObj.toString() + " "; } } } return params.trim(); } public boolean isFilterObject(Object o) { Class<?> clazz = o.getClass(); if (clazz.isArray()) { return clazz.getComponentType().isAssignableFrom(MultipartFile.class); } else { Iterator iter; if (Collection.class.isAssignableFrom(clazz)) { Collection collection = (Collection)o; iter = collection.iterator(); if (iter.hasNext()) { return iter.next() instanceof MultipartFile; } } else if (Map.class.isAssignableFrom(clazz)) { Map map = (Map)o; iter = map.entrySet().iterator(); if (iter.hasNext()) { Map.Entry entry = (Map.Entry)iter.next(); return entry.getValue() instanceof MultipartFile; } } return o instanceof MultipartFile || o instanceof HttpServletRequest || o instanceof HttpServletResponse || o instanceof BindingResult; } } }
package com.juepeiscm.csp.controller.utils; import com.juepeiscm.common.utils.ip.AddressUtils; import com.juepeiscm.common.utils.spring.SpringUtils; import com.juepeiscm.csp.domain.csplog.SysOperCspLog; import com.juepeiscm.csp.service.csplog.ISysOperCspLogService; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.TimerTask; /** * @Author: py.sun * @Date: 2022/9/7 16:47 */ public class AsyncFactoryCsp { private static final Logger sys_user_logger = LoggerFactory.getLogger("sys-user"); public AsyncFactoryCsp() { } public static TimerTask recordOper(final SysOperCspLog operLog) { return new TimerTask() { public void run() { operLog.setOperLocation(AddressUtils.getRealAddressByIP(operLog.getOperIp())); ((ISysOperCspLogService) SpringUtils.getBean(ISysOperCspLogService.class)).insertOperlog(operLog); } }; } }
在這裡插入程式碼片package com.juepeiscm.csp.controller.order;
在這裡插入程式碼片package com.juepeiscm.csp.controller.order; import com.alibaba.fastjson.JSON; import com.juepeiscm.admin.api.service.ISysDictDataService; import com.juepeiscm.common.annotation.RepeatSubmit; import com.juepeiscm.common.core.controller.BaseController; import com.juepeiscm.common.core.domain.AjaxResult; import com.juepeiscm.common.core.domain.entity.SysDictData; import com.juepeiscm.common.core.page.TableDataInfo; import com.juepeiscm.common.enums.BusinessType; import com.juepeiscm.common.exception.BaseException; import com.juepeiscm.common.utils.StringUtils; import com.juepeiscm.common.utils.poi.ExcelUtil; import com.juepeiscm.csp.annotation.CspLog; import com.juepeiscm.csp.domain.order.CspGodownEntry; import com.juepeiscm.csp.domain.order.CspGodownEntryDetails; import com.juepeiscm.csp.service.common.MenuLogService; import com.juepeiscm.csp.service.data.ICspGoodsdataService; import com.juepeiscm.csp.service.order.ICspGodownEntryService; import com.juepeiscm.csp.vo.GodownEntryExcel; import com.juepeiscm.csp.vo.GoodsDataForGodownEntryDetails; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.util.CollectionUtils; import org.springframework.web.bind.annotation.*; import org.springframework.web.multipart.MultipartFile; import javax.validation.Valid; import java.math.BigDecimal; import java.math.RoundingMode; import java.util.*; import java.util.stream.Collectors; /** * 入庫訂單Controller * * @author juepeiscm * @date 2021-07-23 */ @Api(tags = "入庫訂單介面") @RestController @RequestMapping("/order/godownEntry") public class CspGodownEntryController extends BaseController { private static final Logger logger = LoggerFactory.getLogger(CspGodownEntryController.class); @Autowired private ICspGodownEntryService cspGodownEntryService; @Autowired private ICspGoodsdataService goodsDataService; @Autowired private MenuLogService menuLogService; @Autowired private ISysDictDataService sysDictDataService; /** * 新增入庫訂單Demo */ @PreAuthorize("@ss.hasPermi('order:godownEntry:add')") @ApiOperation(value = "新增入庫訂單") @CspLog(title = "入庫訂單demo4", businessType = BusinessType.INSERT) @PostMapping("/addOrder") @RepeatSubmit public AjaxResult addDemo(@RequestBody @Valid CspGodownEntry godownEntry) { try { return toAjax(cspGodownEntryService.insertOmsGodownEntry(godownEntry)); } catch (Exception e) { e.printStackTrace(); return AjaxResult.error("新增失敗,請聯絡管理員"); } } }
測試下,看看資料庫內容
到此這篇關於SpringBoot利用AOP實現一個紀錄檔管理詳解的文章就介紹到這了,更多相關SpringBoot AOP紀錄檔管理內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45