This removes the warnings produced by the invalid callout in the boot reference. It also provides an example of how to customize the redis connection and links to the "Connection to Redis" section of the Spring Boot reference. Issue #108
7 lines
167 B
Java
7 lines
167 B
Java
package sample.config;
|
|
|
|
import org.springframework.session.data.redis.config.annotation.web.http.*;
|
|
|
|
@EnableRedisHttpSession // <1>
|
|
public class HttpSessionConfig { }
|