csrf filter 부분 proxy 대응

This commit is contained in:
Rinjae
2025-11-26 11:00:46 +09:00
parent 1b1d6c9c2e
commit bf8f3443f7
3 changed files with 75 additions and 50 deletions
@@ -19,10 +19,10 @@ public class EntityServiceLoggingAspect {
@Before("executionEntityServicePointcut()")
public void entityService(JoinPoint joinPoint) {
Logger logger = LoggerFactory.getLogger(joinPoint.getSignature().getDeclaringType());
if (logger.isDebugEnabled()) {
logger.debug("{}", joinPoint.getSignature().toShortString());
}
// Logger logger = LoggerFactory.getLogger(joinPoint.getSignature().getDeclaringType());
// if (logger.isDebugEnabled()) {
// logger.debug("{}", joinPoint.getSignature().toShortString());
// }
}
}