Skip to content

Instantly share code, notes, and snippets.

@gigadot
Created February 20, 2020 12:07
Show Gist options
  • Save gigadot/f3ab633b9c2678b0dfc07cc74f1c7d9b to your computer and use it in GitHub Desktop.
Save gigadot/f3ab633b9c2678b0dfc07cc74f1c7d9b to your computer and use it in GitHub Desktop.
Setup Redis Session in Spring Boot

pom.xml

<dependency>
    <groupId>org.springframework.session</groupId>
    <artifactId>spring-session-data-redis</artifactId>
</dependency>
<dependency>
    <groupId>io.lettuce</groupId>
    <artifactId>lettuce-core</artifactId>
</dependency>

application.properties

spring.session.store-type=redis
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment