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

com.arextest.storage.aspect.AppAuthAspect Maven / Gradle / Ivy

There is a newer version: 1.3.4
Show newest version
package com.arextest.storage.aspect;

import com.arextest.common.annotation.AppAuth;
import javax.annotation.Resource;
import lombok.extern.slf4j.Slf4j;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;

/**
 * @author wildeslam.
 * @create 2023/10/8 17:12
 */
@Slf4j
@Aspect
@Component
public class AppAuthAspect {

  @Resource
  AppAuthAspectExecutor appAuthAspectExecutor;

  @Pointcut(AppAuthAspectExecutor.POINT_CONTENT)
  public void appAuth() {
  }

  @Around(AppAuthAspectExecutor.AROUND_CONTENT)
  public Object doAround(ProceedingJoinPoint point, AppAuth auth) throws Throwable {
    return appAuthAspectExecutor.doAround(point, auth);
  }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy