| | |
| | | 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.core.annotation.Order; |
| | | import org.springframework.stereotype.Component; |
| | | import org.springframework.web.context.request.RequestContextHolder; |
| | | import org.springframework.web.context.request.ServletRequestAttributes; |
| | | |
| | |
| | | /** |
| | | * Created by Administrator on 2019-07-09. |
| | | */ |
| | | @Component |
| | | @Aspect |
| | | //@Component |
| | | //@Aspect |
| | | @Slf4j |
| | | @Order(2) |
| | | //@Order(2) |
| | | public class LogAspect { |
| | | |
| | | private final List<String> logApiList = Stream.of("digitalTwin", "api/mes", "api/robot") |