Skip to content

Commit

Permalink
Merge pull request #114 from yooonwodyd/weekly
Browse files Browse the repository at this point in the history
Weekly
  • Loading branch information
yooonwodyd authored Nov 14, 2024
2 parents e027494 + 5f57465 commit 0482681
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ dependencies {
annotationProcessor "jakarta.persistence:jakarta.persistence-api"

implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.session:spring-session-data-redis'

// Spring docs
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0'
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.helpmeCookies.global.config;

import org.springframework.context.annotation.Configuration;
import org.springframework.session.data.redis.config.annotation.web.http.EnableRedisHttpSession;

@Configuration
@EnableRedisHttpSession
public class RedisHttpSessionConfig {
// 세션 타임아웃을 설정할 수 있습니다.
}

0 comments on commit 0482681

Please sign in to comment.