From e339d21c377efc50464cff4125c3c5a874bb7d65 Mon Sep 17 00:00:00 2001 From: Rinjae Date: Wed, 26 Nov 2025 21:51:19 +0900 Subject: [PATCH] =?UTF-8?q?interceptor=20skip=20=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/eactive/eai/rms/ext/kjb/sso/SsoController.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/eactive/eai/rms/ext/kjb/sso/SsoController.java b/src/main/java/com/eactive/eai/rms/ext/kjb/sso/SsoController.java index 6a2a14c..ad74fd1 100644 --- a/src/main/java/com/eactive/eai/rms/ext/kjb/sso/SsoController.java +++ b/src/main/java/com/eactive/eai/rms/ext/kjb/sso/SsoController.java @@ -1,8 +1,8 @@ package com.eactive.eai.rms.ext.kjb.sso; +import com.eactive.eai.rms.common.interceptor.InterceptorSkipController; import com.eactive.eai.rms.data.entity.man.monitoringProperty.service.MonitoringPropertyService; import com.eactive.ext.kjb.common.KjbProperty; -import com.eactive.ext.kjb.sso.ExtendedInfo; import com.eactive.ext.kjb.sso.KjbSsoModule; import com.eactive.ext.kjb.util.KjbPropertyInjector; import lombok.extern.slf4j.Slf4j; @@ -13,12 +13,11 @@ import org.springframework.web.bind.annotation.RequestParam; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; -import java.util.Arrays; import java.util.Properties; @Slf4j @Controller -public class SsoController { +public class SsoController implements InterceptorSkipController { public static final String PROP_GORUP_ID = "Monitoring"; private final KjbPropertyInjector kjbPropertyInjector;