diff --git a/pom.xml b/pom.xml
index 7a7f5633..fd1e0201 100644
--- a/pom.xml
+++ b/pom.xml
@@ -54,28 +54,8 @@
- mvn2
- https://repo1.maven.org/maven2/
-
- true
-
-
- true
-
-
-
- egovframe
- https://www.egovframe.go.kr/maven/
-
- true
-
-
- false
-
-
-
- egovframe2
- http://maven.egovframe.kr:8080/maven/
+ maven-public
+ http://nexus.iten.co.kr:9999/repository/maven-public/
true
@@ -83,12 +63,6 @@
false
-
-
- jitpack.io
- https://jitpack.io
-
-
@@ -568,7 +542,28 @@
provided
-
+
+
+
+
+
+ org.springframework.session
+ spring-session
+ 1.3.1.RELEASE
+
+
+ redis.clients
+ jedis
+ 2.9.0
+
+
+
+ org.springframework.data
+ spring-data-redis
+ 1.8.11.RELEASE
+
+
+
diff --git a/src/main/java/itn/com/cmm/session/HttpSessionConfig.java b/src/main/java/itn/com/cmm/session/HttpSessionConfig.java
new file mode 100644
index 00000000..43fbb1db
--- /dev/null
+++ b/src/main/java/itn/com/cmm/session/HttpSessionConfig.java
@@ -0,0 +1,39 @@
+package itn.com.cmm.session;
+
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.data.redis.connection.jedis.JedisConnectionFactory;
+import org.springframework.data.redis.core.RedisTemplate;
+import org.springframework.session.data.redis.config.annotation.web.http.EnableRedisHttpSession;
+
+@Configuration
+@EnableRedisHttpSession(maxInactiveIntervalInSeconds = 1800) // 세션 timeout 설정
+public class HttpSessionConfig {
+
+ @Value("#{globalSettings['Globals.valkey.ip']}")
+ private String ip;
+
+ @Value("#{globalSettings['Globals.valkey.port']}")
+ private int port;
+
+ @Value("#{globalSettings['Globals.valkey.password']}")
+ private String password;
+
+ @Bean
+ public JedisConnectionFactory connectionFactory() {
+ JedisConnectionFactory factory = new JedisConnectionFactory();
+ factory.setHostName(this.ip);
+ factory.setPort(this.port);
+ factory.setPassword(this.password);
+ factory.afterPropertiesSet();
+ return factory;
+ }
+
+ @Bean
+ public RedisTemplate