package com.springsecuritydemo.aspect;
import com.springsecuritydemo.domain.base.BaseCreateByAndUpdateBy;
import com.springsecuritydemo.service.security.impl.UserDetailsImpl;
import com.springsecuritydemo.util.MyReflectionUtils;
import lombok.extern.slf4j.Slf4j;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.stereotype.Component;
import org.springframework.util.ReflectionUtils;
import java.lang.reflect.Field;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
@Aspect
@Slf4j
@Component
public class MethodExporterAspect {
private BaseCreateByAndUpdateBy baseCreateByAndUpdateBy;
public String getUserDetailsImplId(){
UserDetailsImpl principal = (UserDetailsImpl)SecurityContextHolder.getContext().getAuthentication().getPrincipal();
return principal.getSysAdmin().id;
}
public static String getActualType(Object o,int index) {
Type clazz = o.getClass().getGenericSuperclass();
ParameterizedType pt = (ParameterizedType)clazz;
return pt.getActualTypeArguments()[index].toString();
}
public void methodArgsCheckout(ProceedingJoinPoint joinPoint) throws InstantiationException, IllegalAccessException {
Object[] args = joinPoint.getArgs();
Class<?> aClass = args[0].getClass();
}
@Around("@annotation(com.springsecuritydemo.annotation.CreateBy)")
public Object methodExporterDataCreateBy (ProceedingJoinPoint joinPoint) throws Throwable {
methodArgsCheckout(joinPoint);
Object[] args = joinPoint.getArgs();
if(args.length>0) {
throw new RuntimeException("Aspect传参异常");
}
Object object = args[0];
Class<?> aClass = args[0].getClass();
if(!MyReflectionUtils.IsExtends(aClass,BaseCreateByAndUpdateBy.class)){
throw new RuntimeException("未继承BaseCreateByAndUpdateBy");
}
Field createBy = aClass.getField("createBy");
ReflectionUtils.makeAccessible(createBy);
createBy.set(object,getUserDetailsImplId());
Object proceed = joinPoint.proceed();
return proceed;
}
@Around("@annotation(com.springsecuritydemo.annotation.UpdateBy)")
public Object methodExporterDataUpdateBy (ProceedingJoinPoint joinPoint) throws Throwable {
Object[] args = joinPoint.getArgs();
if(args.length>0) {
throw new RuntimeException("Aspect传参异常");
}
Object object = args[0];
Class<?> aClass = args[0].getClass();
if(!MyReflectionUtils.IsExtends(aClass,BaseCreateByAndUpdateBy.class)){
throw new RuntimeException("未继承BaseCreateByAndUpdateBy");
}
Field updateBy = aClass.getField("updateBy");
ReflectionUtils.makeAccessible(updateBy);
updateBy.set(object,getUserDetailsImplId());
Object proceed = joinPoint.proceed();
return proceed;
}
}
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· Docker 太简单,K8s 太复杂?w7panel 让容器管理更轻松!